| Task: | Sanalista |
| Sender: | Junnu |
| Submission time: | 2020-10-03 18:16:35 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.02 s | details |
| #2 | RUNTIME ERROR | 0.02 s | details |
| #3 | RUNTIME ERROR | 0.02 s | details |
Code
a = 0
n = 0
u = ''
o = ''
l = 0
inpt = input().split()
n = int(inpt[0])
for i in range(1,n+1):
u = ''
n = ''
l = 0
word = ''.join(sorted(inpt[i]))
for j in range(len(word)):
o = u
u = word[j]
if(l == 0):
l = 1
else:
if(u == o):
l = l+1
elif(l%2 != 0):
break
else:
a = a+1
print(inpt)
print(a)
Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 18, in <module>
word =...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 18, in <module>
word =...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 18, in <module>
word =...