CSES - Datatähti 2021 alku - Results
Submission details
Task:Sanalista
Sender:Uumas
Submission time:2020-10-03 03:15:14 +0300
Language:PyPy3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.11 sdetails
#20.11 sdetails
#30.11 sdetails

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:

input
1000
korvata
sopimusaika
nuhatartunta
korttiautomaatti
...

correct output
15

user output
Words: Word: nope
Word: nope
Word: nope
Word: nope
Word: nope
...

Test 2

Verdict:

input
1000
pub
hansikaslokero
erikoisvalmisteinen
unijukka
...

correct output
42

user output
Words: Word: nope
Word: nope
Word: nope
Word: nope
Word: nope
...

Test 3

Verdict:

input
1000
haapalastu
toipumisaika
mustalaiskieli
taidelainaamo
...

correct output
70

user output
Words: Word: nope
Word: nope
Word: nope
Word: nope
Word: nope
...