| Task: | Tanssiaiset |
| Sender: | soap |
| Submission time: | 2018-01-18 13:25:17 +0200 |
| Language: | Python3 |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.07 s | 1 | details |
| #2 | RUNTIME ERROR | 0.08 s | 1 | details |
| #3 | RUNTIME ERROR | 0.06 s | 1 | details |
| #4 | RUNTIME ERROR | 0.07 s | 1 | details |
| #5 | RUNTIME ERROR | 0.07 s | 1 | details |
| #6 | RUNTIME ERROR | 0.07 s | 2 | details |
| #7 | RUNTIME ERROR | 0.07 s | 2 | details |
| #8 | RUNTIME ERROR | 0.07 s | 2 | details |
| #9 | RUNTIME ERROR | 0.08 s | 2 | details |
| #10 | RUNTIME ERROR | 0.08 s | 2 | details |
Code
n = int(input()) if (n > 100): a() else: b() def a(n): tsum = 0 ppls = set() tcsum = int((1+n)/2*n) nghty = 0 for x in range(0, n//2+1): a, b = map(int, input().split()) if a in ppls and not nghty: nghty = a if b in ppls and not nghty: nghty = b if not nghty: ppls.add(a) ppls.add(b) tsum = tsum + a + b total = tsum - tcsum print(nghty, total-nghty) def b(n): tsum = 0 ppls = list() tcsum = int((1+n)/2*n) nghty = 0 for x in range(0, n//2+1): a, b = map(int, input().split()) if a in ppls and not nghty: nghty = a if b in ppls and not nghty: nghty = b if not nghty: ppls.append(a) ppls.append(b) tsum = tsum + a + b total = tsum - tcsum for x in range(0, len(ppls)): if ppls[x] == nghty: if x % 2 == 0: print(ppls[x], ppls[x+1]) if x % 2 == 1: print(nghty, total-nghty)
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 79 22 53 70 7 23 91 26 ... |
| correct output |
|---|
| 75 45 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 4, in <module>
else: b()
NameError: name 'b' is not definedTest 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 71 84 54 25 91 34 98 30 ... |
| correct output |
|---|
| 27 49 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 4, in <module>
else: b()
NameError: name 'b' is not definedTest 3
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 74 68 86 10 83 56 31 87 ... |
| correct output |
|---|
| 67 2 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 4, in <module>
else: b()
NameError: name 'b' is not definedTest 4
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 85 43 95 8 53 1 29 86 ... |
| correct output |
|---|
| 54 60 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 4, in <module>
else: b()
NameError: name 'b' is not definedTest 5
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 71 69 74 45 8 95 12 32 ... |
| correct output |
|---|
| 5 7 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 4, in <module>
else: b()
NameError: name 'b' is not definedTest 6
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 95086 86958 87818 74731 27185 49356 54360 7043 ... |
| correct output |
|---|
| 60551 58365 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 3, in <module>
if (n > 100): a()
NameError: name 'a' is not definedTest 7
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 14011 98742 82421 87350 55194 56454 90097 92904 ... |
| correct output |
|---|
| 50997 58566 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 3, in <module>
if (n > 100): a()
NameError: name 'a' is not definedTest 8
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 72139 85248 98125 85461 39422 60426 45770 13451 ... |
| correct output |
|---|
| 50397 41760 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 3, in <module>
if (n > 100): a()
NameError: name 'a' is not definedTest 9
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 32124 96365 8819 68067 90795 31927 45745 64571 ... |
| correct output |
|---|
| 56735 39394 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 3, in <module>
if (n > 100): a()
NameError: name 'a' is not definedTest 10
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 70709 61209 69548 3671 2215 57335 2539 71294 ... |
| correct output |
|---|
| 69366 23793 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 3, in <module>
if (n > 100): a()
NameError: name 'a' is not defined