Task: | Pakkaus |
Sender: | Godlik3 |
Submission time: | 2016-10-04 21:50:54 +0300 |
Language: | Python2 |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.05 s | 1 | details |
#2 | RUNTIME ERROR | 0.05 s | 1 | details |
#3 | RUNTIME ERROR | 0.06 s | 1 | details |
#4 | RUNTIME ERROR | 0.04 s | 1 | details |
#5 | RUNTIME ERROR | 0.06 s | 1 | details |
#6 | RUNTIME ERROR | 0.06 s | 2 | details |
#7 | RUNTIME ERROR | 0.05 s | 2 | details |
#8 | RUNTIME ERROR | 0.06 s | 2 | details |
#9 | RUNTIME ERROR | 0.07 s | 2 | details |
#10 | RUNTIME ERROR | 0.05 s | 2 | details |
#11 | RUNTIME ERROR | 0.71 s | 3 | details |
#12 | RUNTIME ERROR | 1.35 s | 3 | details |
#13 | RUNTIME ERROR | 0.06 s | 3 | details |
#14 | RUNTIME ERROR | 0.06 s | 3 | details |
#15 | RUNTIME ERROR | 0.05 s | 3 | details |
Code
# import string # print "aakkoset:"+str(aakkoset) syote = raw_input() tuloste = "" def addTuloste(kertaa, merkkijono): tuloste = "" n = 0 kertaa = int(kertaa) while n < kertaa: tuloste += merkkijono n += 1 return tuloste def main(syote): # aakkoset = [] #for i in string.lowercase: # aakkoset.append(i) aakkoset = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] print aakkoset tuloste = "" last_char = None x_kertaa = "" merkkijono_temp = "" for index, val in enumerate(syote): # print "index:"+str(index) + " val:"+str(val) if val in aakkoset: merkkijono_temp += val last_char = True else: if last_char == True: tuloste += addTuloste(x_kertaa, merkkijono_temp) x_kertaa = "" merkkijono_temp = "" last_char = False x_kertaa = str(x_kertaa) + str(val) tuloste += addTuloste(x_kertaa, merkkijono_temp) return tuloste tuloste = main(syote) print tuloste
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
input |
---|
1AAAAAAAAAAAAAAAAAAAA |
correct output |
---|
AAAAAAAAAAAAAAAAAAAA |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 2
Group: 1
Verdict: RUNTIME ERROR
input |
---|
1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAA |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 3
Group: 1
Verdict: RUNTIME ERROR
input |
---|
20A |
correct output |
---|
AAAAAAAAAAAAAAAAAAAA |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 4
Group: 1
Verdict: RUNTIME ERROR
input |
---|
2N1J2F1XH2D2B2VT1N1ES |
correct output |
---|
NNJFFXHDDBBVTVTNES |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 5
Group: 1
Verdict: RUNTIME ERROR
input |
---|
2Z1E1UN1P2A2A1D2F2EZ1FZ1J |
correct output |
---|
ZZEUNPAAAADFFEZEZFZJ |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 6
Group: 2
Verdict: RUNTIME ERROR
input |
---|
1AAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 7
Group: 2
Verdict: RUNTIME ERROR
input |
---|
1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 8
Group: 2
Verdict: RUNTIME ERROR
input |
---|
1000A |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 9
Group: 2
Verdict: RUNTIME ERROR
input |
---|
11QOUDQFAFUPAYCPXZ15KANCLRGT9S... |
correct output |
---|
QOUDQFAFUPAYCPXZQOUDQFAFUPAYCP... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 10
Group: 2
Verdict: RUNTIME ERROR
input |
---|
20NFBIUXOSO10XRXZRMULZDUFK14BB... |
correct output |
---|
NFBIUXOSONFBIUXOSONFBIUXOSONFB... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 11
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1AAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 12
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A... |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 13
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1000000A |
correct output |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 14
Group: 3
Verdict: RUNTIME ERROR
input |
---|
87GEIGDBZCYGSFYYCGQUAWQJFUUAQG... |
correct output |
---|
GEIGDBZCYGSFYYCGQUAWQJFUUAQGDT... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...
Test 15
Group: 3
Verdict: RUNTIME ERROR
input |
---|
316XXYCLTBFQRAXHQPTLDB275NMQJD... |
correct output |
---|
XXYCLTBFQRAXHQPTLDBXXYCLTBFQRA... |
user output |
---|
['a', 'b', 'c', 'd', 'e', 'f',... Truncated |
Error:
Traceback (most recent call last): File "input/code.py", line 53, in <module> tulost...