| Task: | Sanalista |
| Sender: | AfterMath |
| Submission time: | 2020-09-28 10:22:53 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.03 s | details |
| #2 | RUNTIME ERROR | 0.03 s | details |
| #3 | RUNTIME ERROR | 0.03 s | details |
Code
c = int(input())
l = []
a = 0
for t in range(c):
l.append(input())
for i in range(c):
l2 = []
l2[:0] = l[i]
l2.sort()
for j in range(0, len(l2), 2):
if l2[j] != l2[j+1]:
break
if j == len(l2) - 2:
a += 1
print(a)Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| 15 |
Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
| correct output |
|---|
| 42 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 11, in <module>
if l2[...Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
| correct output |
|---|
| 70 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 11, in <module>
if l2[...