Task: | Niitty |
Sender: | hertsu |
Submission time: | 2024-11-07 19:22:53 +0200 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
#4 | RUNTIME ERROR | 0 |
#5 | RUNTIME ERROR | 0 |
#6 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.02 s | 1, 2, 3, 4, 5, 6 | details |
#2 | RUNTIME ERROR | 0.02 s | 1, 2, 3, 4, 5, 6 | details |
#3 | RUNTIME ERROR | 0.02 s | 1, 2, 3, 4, 5, 6 | details |
#4 | RUNTIME ERROR | 0.02 s | 1, 2, 3, 4, 5, 6 | details |
#5 | RUNTIME ERROR | 0.02 s | 1, 2, 3, 4, 5, 6 | details |
#6 | RUNTIME ERROR | 0.02 s | 2, 3, 4, 5, 6 | details |
#7 | RUNTIME ERROR | 0.02 s | 2, 3, 4, 5, 6 | details |
#8 | RUNTIME ERROR | 0.02 s | 2, 3, 4, 5, 6 | details |
#9 | RUNTIME ERROR | 0.02 s | 2, 3, 4, 5, 6 | details |
#10 | RUNTIME ERROR | 0.05 s | 3, 4, 5, 6 | details |
#11 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6 | details |
#12 | RUNTIME ERROR | 0.05 s | 3, 4, 5, 6 | details |
#13 | RUNTIME ERROR | 0.03 s | 3, 4, 5, 6 | details |
#14 | RUNTIME ERROR | 0.21 s | 4, 5, 6 | details |
#15 | RUNTIME ERROR | 0.21 s | 4, 5, 6 | details |
#16 | RUNTIME ERROR | 0.21 s | 4, 5, 6 | details |
#17 | RUNTIME ERROR | 0.03 s | 4, 5, 6 | details |
#18 | TIME LIMIT EXCEEDED | -- | 5, 6 | details |
#19 | TIME LIMIT EXCEEDED | -- | 5, 6 | details |
#20 | TIME LIMIT EXCEEDED | -- | 5, 6 | details |
#21 | RUNTIME ERROR | 0.06 s | 5, 6 | details |
#22 | TIME LIMIT EXCEEDED | -- | 6 | details |
#23 | TIME LIMIT EXCEEDED | -- | 6 | details |
#24 | TIME LIMIT EXCEEDED | -- | 6 | details |
#25 | RUNTIME ERROR | 0.27 s | 6 | details |
Code
flower_field = {} flower_locations = {} flower_amounts = {} included_flowers = [] n = int(input()) for i in range(n): inputrow = list(input()) for index, input_ in enumerate(inputrow): flower_field[(i, index)] = input_ if input_ in flower_locations: flower_locations[input_].append((i, index)) flower_amounts[input_]+=1 else: flower_locations[input_] = [(i, index)] flower_amounts[input_] = 1 included_flowers.append(input_) included_flowers = set(included_flowers) squares = 0 for i in range(n): for j in range(n): for k in range(i, n): missing = included_flowers-{flower_field[(a, i)] for a in range(i, k+1)} for l in range(j, n): missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} print(missing) if len(missing) == 0: squares += n-l break print(squares)
Test details
Test 1
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
10 TNCTNPNTPC NPPNTNTPTP NTNTTCNTCT NPCPNPPNTT ... |
correct output |
---|
2035 |
user output |
---|
{'C', 'P'} {'P'} {'P'} {'P'} set() ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 10)
Test 2
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
10 NFWQLWNWYS DZOQJVXFPJ CNHXPXMCQD QRTBVNLTQC ... |
correct output |
---|
9 |
user output |
---|
{'C', 'W', 'Z', 'K', 'S', 'D',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 10)
Test 3
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
10 XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX ... |
correct output |
---|
3025 |
user output |
---|
set() set() set() set() set() ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 10)
Test 4
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
10 FFFFFFFFFF FFFFFCFFFF FFFFFFJFFF FFFFFFFFFF ... |
correct output |
---|
12 |
user output |
---|
{'J', 'M', 'I', 'H', 'Y', 'C',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 10)
Test 5
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
1 X |
correct output |
---|
1 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 1)
Test 6
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
20 BBCBUBOUOBBCUUBBCOUO BOUCOOCUBCOOOCOBOCUO UCCUUUOBCOCBCBUBUCOO BUOBUCUCUOOBCOOUBUOO ... |
correct output |
---|
38724 |
user output |
---|
{'U', 'C', 'O'} {'U', 'O'} {'U', 'O'} {'O'} {'O'} ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 20)
Test 7
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
20 CBGLSHGZHYZDWBNDBJUG SMUXOJQYPXZDTMJUIWOJ XIDSTNBGHKRKOVUVMINB MTQGCFRUHQKALXRNCQGS ... |
correct output |
---|
8334 |
user output |
---|
{'J', 'S', 'H', 'L', 'G', 'V',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 20)
Test 8
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
20 KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK ... |
correct output |
---|
44100 |
user output |
---|
set() set() set() set() set() ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 20)
Test 9
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
20 AAAAAAAAXAAAAAAAAAAA AAAWAAAAAAAAAAAAAOAA AAAAAAAAAAAAAAAAAPAA AAAAAAAAKAAAAAAAAAAZ ... |
correct output |
---|
18 |
user output |
---|
{'Z', 'O', 'T', 'G', 'H', 'S',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 20)
Test 10
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
50 GRGREEEGREGXRXXEGXXREXGRRRGRRR... |
correct output |
---|
1584665 |
user output |
---|
{'X', 'E'} {'X', 'E'} {'X', 'E'} {'X'} {'X'} ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 50)
Test 11
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
50 AITIISJUHCCRZNKSDCNQKYSQRINFWJ... |
correct output |
---|
1077746 |
user output |
---|
{'E', 'B', 'Y', 'O', 'U', 'P',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 50)
Test 12
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
50 OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO... |
correct output |
---|
1625625 |
user output |
---|
set() set() set() set() set() ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 50)
Test 13
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
50 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF... |
correct output |
---|
1680 |
user output |
---|
{'B', 'X', 'K', 'H', 'I', 'O',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 50)
Test 14
Group: 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
100 NNCMDCDDCCNNNDNCMMNCDCDCCDCDNM... |
correct output |
---|
25325366 |
user output |
---|
{'M', 'D', 'C'} {'M', 'D'} {'D'} set() {'M', 'D'} ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 100)
Test 15
Group: 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
100 LIMQQIHASECROEVILNVULGWZJPPKOG... |
correct output |
---|
22342463 |
user output |
---|
{'J', 'X', 'D', 'H', 'E', 'Z',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 100)
Test 16
Group: 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
100 TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT... |
correct output |
---|
25502500 |
user output |
---|
set() set() set() set() set() ... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 100)
Test 17
Group: 4, 5, 6
Verdict: RUNTIME ERROR
input |
---|
100 QXQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
correct output |
---|
25650 |
user output |
---|
{'Y', 'M', 'C', 'R', 'O', 'A',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 100)
Test 18
Group: 5, 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
200 NAANANMMKNKKAKMKMAKNKMNKMMNNAA... |
correct output |
---|
403292767 |
user output |
---|
(empty) |
Test 19
Group: 5, 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
200 OMYWATTLURKQPTKEFMGGYAOONXWVSC... |
correct output |
---|
388111321 |
user output |
---|
(empty) |
Test 20
Group: 5, 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
200 CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC... |
correct output |
---|
404010000 |
user output |
---|
(empty) |
Test 21
Group: 5, 6
Verdict: RUNTIME ERROR
input |
---|
200 LLLLLLLLLLLLLLLLLHLLLLLLLLLLLL... |
correct output |
---|
14159445 |
user output |
---|
{'C', 'Y', 'E', 'N', 'B', 'D',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 200)
Test 22
Group: 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 VVHWVUHVHUWWWVUUUWVUUHUUWHWUVW... |
correct output |
---|
15683003812 |
user output |
---|
(empty) |
Test 23
Group: 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 OIMZGEQSBMBDSDXSWRFNKSGFEBBTJE... |
correct output |
---|
15575906951 |
user output |
---|
(empty) |
Test 24
Group: 6
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 IIIIIIIIIIIIIIIIIIIIIIIIIIIIII... |
correct output |
---|
15687562500 |
user output |
---|
(empty) |
Test 25
Group: 6
Verdict: RUNTIME ERROR
input |
---|
500 WWWWWWWWWWWWWWWWWWWWWWWWWWWWWW... |
correct output |
---|
3058970930 |
user output |
---|
{'Y', 'P', 'E', 'H', 'S', 'I',... |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 26, in <module> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} File "/box/input/code.py", line 26, in <setcomp> missing = missing - {flower_field[(a, l+1)] for a in range(i, k+1)} KeyError: (0, 500)