CSES - Datatähti 2021 alku - Results
Submission details
Task:Sanalista
Sender:AfterMath
Submission time:2020-09-28 10:20:53 +0300
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#1ACCEPTED0.03 sdetails
#20.02 sdetails
#30.02 sdetails

Code

c = int(input())
l = []
a = 0
for i in range(c):
    b = input()
    l2 = []
    l2[:0] = b
    l2.sort()
    for j in range(0, len(l2), 2):
        if l2[j] != l2[j+1]:
            break
        if j == len(l2) - 2:
            a += 1
print(a)

Test details

Test 1

Verdict: ACCEPTED

input
1000
korvata
sopimusaika
nuhatartunta
korttiautomaatti
...

correct output
15

user output
15

Test 2

Verdict:

input
1000
pub
hansikaslokero
erikoisvalmisteinen
unijukka
...

correct output
42

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 10, in <module>
    if l2[j] != l2[j+1]:
IndexError: list index out of range

Test 3

Verdict:

input
1000
haapalastu
toipumisaika
mustalaiskieli
taidelainaamo
...

correct output
70

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 10, in <module>
    if l2[j] != l2[j+1]:
IndexError: list index out of range