CSES - Datatähti 2018 alku - Results
Submission details
Task:Merkkijono
Sender:otva
Submission time:2017-10-09 19:34:14 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.06 sdetails
#20.07 sdetails
#30.07 sdetails
#40.09 sdetails
#50.06 sdetails
#60.08 sdetails
#70.08 sdetails
#80.06 sdetails
#90.08 sdetails
#100.07 sdetails

Code

# -*- coding: utf-8 -*-
"""
Spyder Editor

This is a temporary script file.
"""

syote = raw_input() #Laita merkkijono tahan

def tarkista(syote):
    b = 0
    for i in syote:
            if b < len(syote) - 1 and syote[b] == syote[b+1]:
                return True
            b += 1
    return False
def etsi_loppu(syote,eka):
    vika = eka
    while vika < len(syote)-1 and syote[vika] == syote[vika+1]:
        vika += 1
    return vika
def uusi_syote(syote,eka,vika):
    if eka == 0: 
        return syote[vika + 1:]
    else:
        a = syote[0:eka] + syote[vika+1:]
        return a

def etsi_alku(syote):
    c = 0
    for i in syote: #periaatteessa vain kopio funkitiosta tarkista
        if c < len(syote) - 1 and syote[c] == syote[c+1]:
            return c
        c += 1

def main(syote): 
    s = syote
    while tarkista(s) == True:
            eka = etsi_alku(s)
            vika = etsi_loppu(s,eka)
            s = uusi_syote(s,eka,vika)
    return s

syote = main(syote)
print(syote)

Test details

Test 1

Verdict:

input
ABABABABABABABABABABABABABABAB...

correct output
ABABABABABABABABABABABABABABAB...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 2

Verdict:

input
AABBAABBAABBAABBAABBAABBAABBAA...

correct output
(empty)

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 3

Verdict:

input
ABABABABABABABABABABABABABABAB...

correct output
(empty)

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 4

Verdict:

input
BBABABBBBBAABBBABABABBBBAAABAB...

correct output
BAB

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 5

Verdict:

input
ACDCBBACDBBBACAACBBDBADBAABABA...

correct output
ACDCACDADBADABACACDCADADABABCA...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 6

Verdict:

input
EETFHIJOGACDHMGVFJCMETMZDEITTR...

correct output
TFHIJOGACDHMGVFJCMETMZDEIROTET...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 7

Verdict:

input
GOONLAHLYPRFCZKIKSJWAWWYJJPCDB...

correct output
GNLAHLYPRFCZKIKSJWAYPCDNWYMRCE...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 8

Verdict:

input
PISHWMOTCDDZFRMYMOMYDYYGJZIQHS...

correct output
PISHWMOTCZFRMYMOMYDGJZIQHSVAOK...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 9

Verdict:

input
QUVVTPXAMWWODFXRONJODPGBTCISGM...

correct output
QUTPXAMODFXRONJODPGBTCISGMVRBW...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined

Test 10

Verdict:

input
POXHAHYEZTLYNFSLABODMRNKDSKROZ...

correct output
POXHAHYEZTLYNFSLABODMRNKDSKROZ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 8, in <module>
    syote = raw_input() #Laita merkkijono tahan
NameError: name 'raw_input' is not defined