CSES - Datatähti 2021 alku - Results
Submission details
Task:Sanalista
Sender:PMikael
Submission time:2020-10-05 13:46:59 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.02 sdetails
#20.02 sdetails
#30.02 sdetails

Code

inputs = [str(x) for x in input().split()]
'''
for input in inputs:
    print(input)
'''
numWords = int(inputs[0])

del inputs[0]

WORDS = inputs

RightWords = []
'''
for word in WORDS:
    
    isDiv = False
    for i in range(len(word)):
        char1 = word[i]  
        for n in range(len(word)):
            char2 = word[n]
            isDivs = []
            if char1 == char2 and i != n:
                
                print("Flipped")
                if isDiv == False:
                    isDiv = True
                elif isDiv == True:
                    isDiv = False
                #del word[i]
                #word = word[:n] + word[(n+1):]
        if isDiv == True:
            RightWords.append(word)
'''
rightWords = []

for word in WORDS:
    charDict = {}

    for char in word:
        if char in charDict:
            charDict[char] = charDict[char] + 1
        else:
            charDict[char] = 1
    rightWord = True
    for char in charDict:
        if charDict[char] % 2 != 0:
            rightWord = False
    if rightWord == True:
        rightWords.append(word)


print(len(rightWords))


       
#print(len(RightWords))

Test details

Test 1

Verdict:

input
1000
korvata
sopimusaika
nuhatartunta
korttiautomaatti
...

correct output
15

user output
0

Test 2

Verdict:

input
1000
pub
hansikaslokero
erikoisvalmisteinen
unijukka
...

correct output
42

user output
0

Test 3

Verdict:

input
1000
haapalastu
toipumisaika
mustalaiskieli
taidelainaamo
...

correct output
70

user output
0