| Task: | Jäätelö |
| Sender: | joshimasta |
| Submission time: | 2017-01-19 13:32:26 +0200 |
| Language: | Python3 |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.07 s | details |
| #2 | RUNTIME ERROR | 0.08 s | details |
| #3 | RUNTIME ERROR | 0.07 s | details |
| #4 | RUNTIME ERROR | 0.08 s | details |
| #5 | RUNTIME ERROR | 0.08 s | details |
| #6 | RUNTIME ERROR | 0.06 s | details |
| #7 | RUNTIME ERROR | 0.07 s | details |
| #8 | RUNTIME ERROR | 0.07 s | details |
| #9 | RUNTIME ERROR | 0.07 s | details |
| #10 | RUNTIME ERROR | 0.07 s | details |
Code
i = int(input()) def rec(x): if x == 1: return "END" elif x == 2: return "MUL END" elif x % 2 == 0: a = rec(x/2) s = rec(x-3) if len(a) < len(s): return "MUL " + a else: return "ADD " + s else: return "ADD " + rec(x - 3) if i % 3 == 0: print(0) else: print(rec(i))
Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1 749 88 363 |
| correct output |
|---|
| 726 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '1 749'Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 2 902 968 550 152 228 |
| correct output |
|---|
| 456 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '2 902'Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 5 295 35 81 653 771 747 823 871 611 ... |
| correct output |
|---|
| 162 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '5 295'Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 10 272 38 13 114 420 42 344 942 307 ... |
| correct output |
|---|
| 840 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '10 272'Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 50 468 867 254 870 736 28 739 60 609 ... |
| correct output |
|---|
| 2000 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '50 468'Test 6
Verdict: RUNTIME ERROR
| input |
|---|
| 100 739 395 712 476 916 102 614 312 533 ... |
| correct output |
|---|
| 1928 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '100 739'Test 7
Verdict: RUNTIME ERROR
| input |
|---|
| 100 781 342 898 466 888 713 516 133 389 ... |
| correct output |
|---|
| 1894 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '100 781'Test 8
Verdict: RUNTIME ERROR
| input |
|---|
| 100 297 423 506 135 31 279 441 362 969 ... |
| correct output |
|---|
| 1906 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '100 297'Test 9
Verdict: RUNTIME ERROR
| input |
|---|
| 100 875 917 956 243 815 365 575 42 846 ... |
| correct output |
|---|
| 1960 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '100 875'Test 10
Verdict: RUNTIME ERROR
| input |
|---|
| 100 651 963 307 169 423 172 150 779 998 ... |
| correct output |
|---|
| 1970 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
i = int(input())
ValueError: invalid literal for int() with base 10: '100 651'