| Task: | Niitty |
| Sender: | hertsu |
| Submission time: | 2024-11-07 19:21:55 +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.02 s | 3, 4, 5, 6 | details |
| #11 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6 | details |
| #12 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6 | details |
| #13 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6 | details |
| #14 | RUNTIME ERROR | 0.03 s | 4, 5, 6 | details |
| #15 | RUNTIME ERROR | 0.03 s | 4, 5, 6 | details |
| #16 | RUNTIME ERROR | 0.03 s | 4, 5, 6 | details |
| #17 | RUNTIME ERROR | 0.03 s | 4, 5, 6 | details |
| #18 | RUNTIME ERROR | 0.06 s | 5, 6 | details |
| #19 | RUNTIME ERROR | 0.06 s | 5, 6 | details |
| #20 | RUNTIME ERROR | 0.06 s | 5, 6 | details |
| #21 | RUNTIME ERROR | 0.06 s | 5, 6 | details |
| #22 | RUNTIME ERROR | 0.28 s | 6 | details |
| #23 | RUNTIME ERROR | 0.30 s | 6 | details |
| #24 | RUNTIME ERROR | 0.28 s | 6 | details |
| #25 | RUNTIME ERROR | 0.28 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[(i, l)] for a in range(i, k+1)}
for l in range(j, n):
missing = missing - {flower_field[(a+1, l)] 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 |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 2
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 10 NFWQLWNWYS DZOQJVXFPJ CNHXPXMCQD QRTBVNLTQC ... |
| correct output |
|---|
| 9 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 3
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 10 XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX ... |
| correct output |
|---|
| 3025 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 4
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 10 FFFFFFFFFF FFFFFCFFFF FFFFFFJFFF FFFFFFFFFF ... |
| correct output |
|---|
| 12 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 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 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 6
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 20 BBCBUBOUOBBCUUBBCOUO BOUCOOCUBCOOOCOBOCUO UCCUUUOBCOCBCBUBUCOO BUOBUCUCUOOBCOOUBUOO ... |
| correct output |
|---|
| 38724 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 7
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 20 CBGLSHGZHYZDWBNDBJUG SMUXOJQYPXZDTMJUIWOJ XIDSTNBGHKRKOVUVMINB MTQGCFRUHQKALXRNCQGS ... |
| correct output |
|---|
| 8334 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 8
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 20 KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK ... |
| correct output |
|---|
| 44100 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 9
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 20 AAAAAAAAXAAAAAAAAAAA AAAWAAAAAAAAAAAAAOAA AAAAAAAAAAAAAAAAAPAA AAAAAAAAKAAAAAAAAAAZ ... |
| correct output |
|---|
| 18 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 10
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 50 GRGREEEGREGXRXXEGXXREXGRRRGRRR... |
| correct output |
|---|
| 1584665 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 11
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 50 AITIISJUHCCRZNKSDCNQKYSQRINFWJ... |
| correct output |
|---|
| 1077746 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 12
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 50 OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO... |
| correct output |
|---|
| 1625625 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 13
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 50 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF... |
| correct output |
|---|
| 1680 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 14
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 100 NNCMDCDDCCNNNDNCMMNCDCDCCDCDNM... |
| correct output |
|---|
| 25325366 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 15
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 100 LIMQQIHASECROEVILNVULGWZJPPKOG... |
| correct output |
|---|
| 22342463 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 16
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 100 TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT... |
| correct output |
|---|
| 25502500 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 17
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 100 QXQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
| correct output |
|---|
| 25650 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 18
Group: 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 200 NAANANMMKNKKAKMKMAKNKMNKMMNNAA... |
| correct output |
|---|
| 403292767 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 19
Group: 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 200 OMYWATTLURKQPTKEFMGGYAOONXWVSC... |
| correct output |
|---|
| 388111321 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 20
Group: 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 200 CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC... |
| correct output |
|---|
| 404010000 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 21
Group: 5, 6
Verdict: RUNTIME ERROR
| input |
|---|
| 200 LLLLLLLLLLLLLLLLLHLLLLLLLLLLLL... |
| correct output |
|---|
| 14159445 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 22
Group: 6
Verdict: RUNTIME ERROR
| input |
|---|
| 500 VVHWVUHVHUWWWVUUUWVUUHUUWHWUVW... |
| correct output |
|---|
| 15683003812 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 23
Group: 6
Verdict: RUNTIME ERROR
| input |
|---|
| 500 OIMZGEQSBMBDSDXSWRFNKSGFEBBTJE... |
| correct output |
|---|
| 15575906951 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 24
Group: 6
Verdict: RUNTIME ERROR
| input |
|---|
| 500 IIIIIIIIIIIIIIIIIIIIIIIIIIIIII... |
| correct output |
|---|
| 15687562500 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not definedTest 25
Group: 6
Verdict: RUNTIME ERROR
| input |
|---|
| 500 WWWWWWWWWWWWWWWWWWWWWWWWWWWWWW... |
| correct output |
|---|
| 3058970930 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 24, in <module>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
File "/box/input/code.py", line 24, in <setcomp>
missing = included_flowers-{flower_field[(i, l)] for a in range(i, k+1)}
NameError: name 'l' is not defined