CSES - Datatähti 2018 alku - Results
Submission details
Task:Merkkijono
Sender:otva
Submission time:2017-10-09 20:05:05 +0300
Language:Python3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.07 sdetails
#20.08 sdetails
#30.06 sdetails
#40.07 sdetails
#50.09 sdetails
#60.07 sdetails
#70.08 sdetails
#80.08 sdetails
#90.07 sdetails
#100.10 sdetails

Code

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

This is a temporary script file.
"""
import sys
 #Laita merkkijono tahan
syote = sys.argv[1]

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

print(main(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 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 2

Verdict:

input
AABBAABBAABBAABBAABBAABBAABBAA...

correct output
(empty)

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 3

Verdict:

input
ABABABABABABABABABABABABABABAB...

correct output
(empty)

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 4

Verdict:

input
BBABABBBBBAABBBABABABBBBAAABAB...

correct output
BAB

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 5

Verdict:

input
ACDCBBACDBBBACAACBBDBADBAABABA...

correct output
ACDCACDADBADABACACDCADADABABCA...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 6

Verdict:

input
EETFHIJOGACDHMGVFJCMETMZDEITTR...

correct output
TFHIJOGACDHMGVFJCMETMZDEIROTET...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 7

Verdict:

input
GOONLAHLYPRFCZKIKSJWAWWYJJPCDB...

correct output
GNLAHLYPRFCZKIKSJWAYPCDNWYMRCE...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 8

Verdict:

input
PISHWMOTCDDZFRMYMOMYDYYGJZIQHS...

correct output
PISHWMOTCZFRMYMOMYDGJZIQHSVAOK...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 9

Verdict:

input
QUVVTPXAMWWODFXRONJODPGBTCISGM...

correct output
QUTPXAMODFXRONJODPGBTCISGMVRBW...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range

Test 10

Verdict:

input
POXHAHYEZTLYNFSLABODMRNKDSKROZ...

correct output
POXHAHYEZTLYNFSLABODMRNKDSKROZ...

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 9, in <module>
    syote = sys.argv[1]
IndexError: list index out of range