CSES - Datatähti 2025 alku - Results
Submission details
Task:Niitty
Sender:jokeri2222
Submission time:2024-10-30 15:57:03 +0200
Language:Python3 (CPython3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
#50
#60
Test results
testverdicttimegroup
#10.02 s1, 2, 3, 4, 5, 6details
#20.02 s1, 2, 3, 4, 5, 6details
#30.02 s1, 2, 3, 4, 5, 6details
#40.02 s1, 2, 3, 4, 5, 6details
#50.02 s1, 2, 3, 4, 5, 6details
#60.02 s2, 3, 4, 5, 6details
#70.02 s2, 3, 4, 5, 6details
#80.02 s2, 3, 4, 5, 6details
#90.02 s2, 3, 4, 5, 6details
#100.03 s3, 4, 5, 6details
#110.02 s3, 4, 5, 6details
#120.02 s3, 4, 5, 6details
#130.02 s3, 4, 5, 6details
#140.07 s4, 5, 6details
#150.06 s4, 5, 6details
#160.05 s4, 5, 6details
#170.03 s4, 5, 6details
#180.38 s5, 6details
#190.30 s5, 6details
#200.24 s5, 6details
#210.20 s5, 6details
#22--6details
#23--6details
#24--6details
#25--6details

Code

meadow = []
n = int(input())
for i in range(n):
    meadow.append(input())
uniques = sorted(list(set("".join(meadow))))



for x in range(1, n-1):
    u = sorted(list(set("".join(map(lambda l: l[x:n+1], meadow[0:n+1])))))
    if u!=uniques:
        min_x = x-1
        break

for x in range(n-1)[::-1]:
    u = sorted(list(set("".join(map(lambda l: l[0:x+1], meadow[0:n+1])))))
    if u!=uniques:
        max_x = x+1
        break

for y in range(1, n):
    u = sorted(list(set("".join(map(lambda l: l[0:n+1], meadow[y:n+1])))))
    if u!=uniques:
        min_y = y-1
        break

for y in range(n-1)[::-1]:
    u = sorted(list(set("".join(map(lambda l: l[0:n+1], meadow[0:y+1])))))
    if u!=uniques:
        max_y = y+1
        break


print((n-(max_x-min_x))*(n-(max_y-min_y)))

Test details

Test 1

Group: 1, 2, 3, 4, 5, 6

Verdict:

input
10
TNCTNPNTPC
NPPNTNTPTP
NTNTTCNTCT
NPCPNPPNTT
...

correct output
2035

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 2

Group: 1, 2, 3, 4, 5, 6

Verdict:

input
10
NFWQLWNWYS
DZOQJVXFPJ
CNHXPXMCQD
QRTBVNLTQC
...

correct output
9

user output
12

Test 3

Group: 1, 2, 3, 4, 5, 6

Verdict:

input
10
XXXXXXXXXX
XXXXXXXXXX
XXXXXXXXXX
XXXXXXXXXX
...

correct output
3025

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 4

Group: 1, 2, 3, 4, 5, 6

Verdict:

input
10
FFFFFFFFFF
FFFFFCFFFF
FFFFFFJFFF
FFFFFFFFFF
...

correct output
12

user output
9

Test 5

Group: 1, 2, 3, 4, 5, 6

Verdict:

input
1
X

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 6

Group: 2, 3, 4, 5, 6

Verdict:

input
20
BBCBUBOUOBBCUUBBCOUO
BOUCOOCUBCOOOCOBOCUO
UCCUUUOBCOCBCBUBUCOO
BUOBUCUCUOOBCOOUBUOO
...

correct output
38724

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 7

Group: 2, 3, 4, 5, 6

Verdict:

input
20
CBGLSHGZHYZDWBNDBJUG
SMUXOJQYPXZDTMJUIWOJ
XIDSTNBGHKRKOVUVMINB
MTQGCFRUHQKALXRNCQGS
...

correct output
8334

user output
841

Test 8

Group: 2, 3, 4, 5, 6

Verdict:

input
20
KKKKKKKKKKKKKKKKKKKK
KKKKKKKKKKKKKKKKKKKK
KKKKKKKKKKKKKKKKKKKK
KKKKKKKKKKKKKKKKKKKK
...

correct output
44100

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 9

Group: 2, 3, 4, 5, 6

Verdict:

input
20
AAAAAAAAXAAAAAAAAAAA
AAAWAAAAAAAAAAAAAOAA
AAAAAAAAAAAAAAAAAPAA
AAAAAAAAKAAAAAAAAAAZ
...

correct output
18

user output
12

Test 10

Group: 3, 4, 5, 6

Verdict:

input
50
GRGREEEGREGXRXXEGXXREXGRRRGRRR...

correct output
1584665

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 11

Group: 3, 4, 5, 6

Verdict:

input
50
AITIISJUHCCRZNKSDCNQKYSQRINFWJ...

correct output
1077746

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'min_x' is not defined. Did you mean: 'min_y'?

Test 12

Group: 3, 4, 5, 6

Verdict:

input
50
OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO...

correct output
1625625

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 13

Group: 3, 4, 5, 6

Verdict:

input
50
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF...

correct output
1680

user output
196

Test 14

Group: 4, 5, 6

Verdict:

input
100
NNCMDCDDCCNNNDNCMMNCDCDCCDCDNM...

correct output
25325366

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 15

Group: 4, 5, 6

Verdict:

input
100
LIMQQIHASECROEVILNVULGWZJPPKOG...

correct output
22342463

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 16

Group: 4, 5, 6

Verdict:

input
100
TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT...

correct output
25502500

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 17

Group: 4, 5, 6

Verdict:

input
100
QXQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
25650

user output
1643

Test 18

Group: 5, 6

Verdict:

input
200
NAANANMMKNKKAKMKMAKNKMNKMMNNAA...

correct output
403292767

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 19

Group: 5, 6

Verdict:

input
200
OMYWATTLURKQPTKEFMGGYAOONXWVSC...

correct output
388111321

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 20

Group: 5, 6

Verdict:

input
200
CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC...

correct output
404010000

user output
(empty)

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 34, in <module>
    print((n-(max_x-min_x))*(n-(max_y-min_y)))
NameError: name 'max_x' is not defined

Test 21

Group: 5, 6

Verdict:

input
200
LLLLLLLLLLLLLLLLLHLLLLLLLLLLLL...

correct output
14159445

user output
51170

Test 22

Group: 6

Verdict:

input
500
VVHWVUHVHUWWWVUUUWVUUHUUWHWUVW...

correct output
15683003812

user output
(empty)

Test 23

Group: 6

Verdict:

input
500
OIMZGEQSBMBDSDXSWRFNKSGFEBBTJE...

correct output
15575906951

user output
(empty)

Test 24

Group: 6

Verdict:

input
500
IIIIIIIIIIIIIIIIIIIIIIIIIIIIII...

correct output
15687562500

user output
(empty)

Test 25

Group: 6

Verdict:

input
500
WWWWWWWWWWWWWWWWWWWWWWWWWWWWWW...

correct output
3058970930

user output
(empty)