| Task: | Program |
| Sender: | sakars |
| Submission time: | 2017-01-21 10:03:57 +0200 |
| Language: | Python3 |
| 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.07 s | 1 | details |
| #2 | RUNTIME ERROR | 0.07 s | 1 | details |
| #3 | RUNTIME ERROR | 0.06 s | 1 | details |
| #4 | RUNTIME ERROR | 0.06 s | 1 | details |
| #5 | RUNTIME ERROR | 0.06 s | 1 | details |
| #6 | RUNTIME ERROR | 0.07 s | 1 | details |
| #7 | RUNTIME ERROR | 0.07 s | 1 | details |
| #8 | RUNTIME ERROR | 0.07 s | 1 | details |
| #9 | RUNTIME ERROR | 0.07 s | 1 | details |
| #10 | RUNTIME ERROR | 0.06 s | 1 | details |
| #11 | RUNTIME ERROR | 0.07 s | 2 | details |
| #12 | RUNTIME ERROR | 0.06 s | 2 | details |
| #13 | RUNTIME ERROR | 0.06 s | 2 | details |
| #14 | RUNTIME ERROR | 0.06 s | 2 | details |
| #15 | RUNTIME ERROR | 0.07 s | 2 | details |
| #16 | RUNTIME ERROR | 0.07 s | 2 | details |
| #17 | RUNTIME ERROR | 0.07 s | 2 | details |
| #18 | RUNTIME ERROR | 0.08 s | 2 | details |
| #19 | RUNTIME ERROR | 0.08 s | 2 | details |
| #20 | RUNTIME ERROR | 0.07 s | 2 | details |
| #21 | RUNTIME ERROR | 0.07 s | 3 | details |
| #22 | RUNTIME ERROR | 0.07 s | 3 | details |
| #23 | RUNTIME ERROR | 0.08 s | 3 | details |
| #24 | RUNTIME ERROR | 0.08 s | 3 | details |
| #25 | RUNTIME ERROR | 0.07 s | 3 | details |
| #26 | RUNTIME ERROR | 0.06 s | 3 | details |
| #27 | RUNTIME ERROR | 0.07 s | 3 | details |
| #28 | RUNTIME ERROR | 0.09 s | 3 | details |
| #29 | RUNTIME ERROR | 0.06 s | 3 | details |
| #30 | RUNTIME ERROR | 0.07 s | 3 | details |
Code
p=1
import fileinput
for line in fileinput.input(['-']):
m = map(int, line.rstrip().split(' '))
t=""
while(m>1):
if m%2==0:
m=m/2
t="MUL"+'\n'+t
else:
m=m-3
t="ADD"+'\n'+t
if m<1:
print(0)
else:
print(t)
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 58 |
| correct output |
|---|
| 8 MUL ADD MUL ADD ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 72 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 3
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 83 |
| correct output |
|---|
| 8 MUL ADD MUL MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 4
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 53 |
| correct output |
|---|
| 8 ADD MUL ADD MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 5
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 |
| correct output |
|---|
| 8 ADD MUL ADD MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 6
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 64 |
| correct output |
|---|
| 6 ADD MUL MUL MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 7
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 84 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 8
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 60 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 9
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 51 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 10
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 77 |
| correct output |
|---|
| 9 ADD ADD MUL ADD ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 11
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 941694 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 12
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 905674 |
| correct output |
|---|
| 30 MUL ADD MUL ADD ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 13
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 908426 |
| correct output |
|---|
| 29 ADD MUL ADD MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 14
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 960500 |
| correct output |
|---|
| 31 ADD ADD MUL MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 15
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 902101 |
| correct output |
|---|
| 27 MUL ADD MUL ADD ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 16
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 994208 |
| correct output |
|---|
| 27 ADD ADD MUL MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 17
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 923538 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 18
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 950287 |
| correct output |
|---|
| 24 MUL ADD MUL ADD ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 19
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 950516 |
| correct output |
|---|
| 29 ADD ADD MUL MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 20
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 921882 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 21
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 933942296856681219 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 22
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 955775764385016720 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 23
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 981578916796073406 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 24
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 927875200723222396 |
| correct output |
|---|
| 94 MUL ADD MUL MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 25
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 990125206148420558 |
| correct output |
|---|
| 84 ADD MUL ADD MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 26
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 964804802247123102 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 27
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 996610423667404231 |
| correct output |
|---|
| 96 MUL ADD MUL ADD ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 28
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 948665008088793691 |
| correct output |
|---|
| 86 MUL ADD MUL ADD ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 29
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 969397787818953279 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()Test 30
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 918471787211371085 |
| correct output |
|---|
| 90 ADD MUL ADD MUL ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 8, in <module>
while(m>1):
TypeError: unorderable types: map() > int()