Task: | Merkkijonot |
Sender: | okkokko |
Submission time: | 2023-01-21 19:18:10 +0200 |
Language: | Python3 (PyPy3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.06 s | 1, 2, 3 | details |
#2 | RUNTIME ERROR | 0.06 s | 1, 2, 3 | details |
#3 | RUNTIME ERROR | 0.06 s | 1, 2, 3 | details |
#4 | RUNTIME ERROR | 0.07 s | 1, 2, 3 | details |
#5 | RUNTIME ERROR | 0.06 s | 2, 3 | details |
#6 | RUNTIME ERROR | 0.06 s | 2, 3 | details |
#7 | RUNTIME ERROR | 0.06 s | 2, 3 | details |
#8 | RUNTIME ERROR | 0.07 s | 2, 3 | details |
#9 | RUNTIME ERROR | 0.06 s | 3 | details |
#10 | RUNTIME ERROR | 0.06 s | 3 | details |
#11 | RUNTIME ERROR | 0.07 s | 3 | details |
#12 | RUNTIME ERROR | 0.07 s | 3 | details |
#13 | RUNTIME ERROR | 0.06 s | 3 | details |
#14 | RUNTIME ERROR | 0.06 s | 3 | details |
#15 | RUNTIME ERROR | 0.07 s | 2, 3 | details |
#16 | RUNTIME ERROR | 0.07 s | 3 | details |
Code
# 2023 loppukilpailu C import itertools n = int(input()) merkit = [input() for _ in range(n)] l = "".join(merkit) a = l.count("a") b = len(l) - a total = 0 for jonot in itertools.combinations(merkit): if itertools.chain(*jonot).count("a") * 2 == a and itertools.chain(*jonot).count("b") * 2 == b: total += 1 print(total)
Test details
Test 1
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
4 b bbb baabaabaa aab |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 2
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
8 b bb baa a ... |
correct output |
---|
12 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 3
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
16 a a a b ... |
correct output |
---|
5040 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 4
Group: 1, 2, 3
Verdict: RUNTIME ERROR
input |
---|
16 b b a a ... |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 5
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
5 bab bbaaabbabbbaababbbabbabaaabaaa... |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 6
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
10 baabbbababbbabbaaaabab aabaaabbbab aaaabbabab aab ... |
correct output |
---|
2 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 7
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
20 aaaab baaab babb b ... |
correct output |
---|
4332 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 8
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
100 a b a b ... |
correct output |
---|
433105324 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 9
Group: 3
Verdict: RUNTIME ERROR
input |
---|
10 aaaabbabbaabbaaaabbbbabaaaabab... |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 10
Group: 3
Verdict: RUNTIME ERROR
input |
---|
50 aaba aaa abbbbaaba ababbabbabab ... |
correct output |
---|
636733956 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 11
Group: 3
Verdict: RUNTIME ERROR
input |
---|
100 ba bbbaba bbba bb ... |
correct output |
---|
264657218 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 12
Group: 3
Verdict: RUNTIME ERROR
input |
---|
500 a b b b ... |
correct output |
---|
394045503 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 13
Group: 3
Verdict: RUNTIME ERROR
input |
---|
2 bbbababaaaabbbaaaaaaabbabbbaab... |
correct output |
---|
2 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 14
Group: 3
Verdict: RUNTIME ERROR
input |
---|
1 bbbaaaabaabbbababbbbbbbbabbbaa... |
correct output |
---|
0 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 15
Group: 2, 3
Verdict: RUNTIME ERROR
input |
---|
100 a a a a ... |
correct output |
---|
538992043 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...
Test 16
Group: 3
Verdict: RUNTIME ERROR
input |
---|
500 a a a a ... |
correct output |
---|
515561345 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "input/code.py", line 11, in <module> for jo...