Task: | Sanalista |
Sender: | Swafox |
Submission time: | 2020-09-29 13:33:17 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 100 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.03 s | details |
#2 | ACCEPTED | 0.03 s | details |
#3 | ACCEPTED | 0.03 s | details |
Code
#!/usr/sbin/python3 # Making a wordlist wordcount = int(input()) wordlist = [] for x in range(wordcount): wordlist.append(input()) i = 0 # answer = [] # Handling the wordlist while i < len(wordlist): word = wordlist[i] letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] AllLetterCount = [] for letter in letters: if letter in word.lower(): amount = int(word.lower().count(letter)) if (amount % 2) == 0: AllLetterCount.append('true') else: AllLetterCount.append('false') if ("false" in AllLetterCount): pass else: answer.append(x) # i += 1 print(len(answer))
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1000 korvata sopimusaika nuhatartunta korttiautomaatti ... |
correct output |
---|
15 |
user output |
---|
15 |
Test 2
Verdict: ACCEPTED
input |
---|
1000 pub hansikaslokero erikoisvalmisteinen unijukka ... |
correct output |
---|
42 |
user output |
---|
42 |
Test 3
Verdict: ACCEPTED
input |
---|
1000 haapalastu toipumisaika mustalaiskieli taidelainaamo ... |
correct output |
---|
70 |
user output |
---|
70 |