| Task: | Sanalista |
| Sender: | Uumas |
| Submission time: | 2020-10-03 03:15:14 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.11 s | details |
| #2 | WRONG ANSWER | 0.11 s | details |
| #3 | WRONG ANSWER | 0.11 s | details |
Code
#!/usr/bin/env python3
wordCount = int(input('Words: '))
word = 'kirppusirkus'
matchCount = 0
from string import ascii_lowercase
for i in range(wordCount):
word = input('Word: ')
for c in ascii_lowercase:
if (word.count(c) % 2) == 1:
print('nope')
break
elif c == 'z':
matchCount+=1
print(matchCount)Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
| correct output |
|---|
| 15 |
| user output |
|---|
| Words: Word: nope Word: nope Word: nope Word: nope Word: nope ... Truncated |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
| correct output |
|---|
| 42 |
| user output |
|---|
| Words: Word: nope Word: nope Word: nope Word: nope Word: nope ... Truncated |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
| correct output |
|---|
| 70 |
| user output |
|---|
| Words: Word: nope Word: nope Word: nope Word: nope Word: nope ... Truncated |
