| Task: | Niitty | 
| Sender: | qhuge | 
| Submission time: | 2024-10-29 22:38:18 +0200 | 
| Language: | Python3 (PyPy3) | 
| 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.07 s | 1, 2, 3, 4, 5, 6 | details | 
| #2 | RUNTIME ERROR | 0.07 s | 1, 2, 3, 4, 5, 6 | details | 
| #3 | RUNTIME ERROR | 0.07 s | 1, 2, 3, 4, 5, 6 | details | 
| #4 | RUNTIME ERROR | 0.07 s | 1, 2, 3, 4, 5, 6 | details | 
| #5 | ACCEPTED | 0.04 s | 1, 2, 3, 4, 5, 6 | details | 
| #6 | RUNTIME ERROR | 0.07 s | 2, 3, 4, 5, 6 | details | 
| #7 | RUNTIME ERROR | 0.07 s | 2, 3, 4, 5, 6 | details | 
| #8 | RUNTIME ERROR | 0.07 s | 2, 3, 4, 5, 6 | details | 
| #9 | RUNTIME ERROR | 0.07 s | 2, 3, 4, 5, 6 | details | 
| #10 | RUNTIME ERROR | 0.07 s | 3, 4, 5, 6 | details | 
| #11 | RUNTIME ERROR | 0.07 s | 3, 4, 5, 6 | details | 
| #12 | RUNTIME ERROR | 0.07 s | 3, 4, 5, 6 | details | 
| #13 | RUNTIME ERROR | 0.22 s | 3, 4, 5, 6 | details | 
| #14 | RUNTIME ERROR | 0.07 s | 4, 5, 6 | details | 
| #15 | RUNTIME ERROR | 0.07 s | 4, 5, 6 | details | 
| #16 | RUNTIME ERROR | 0.07 s | 4, 5, 6 | details | 
| #17 | RUNTIME ERROR | 0.09 s | 4, 5, 6 | details | 
| #18 | RUNTIME ERROR | 0.11 s | 5, 6 | details | 
| #19 | RUNTIME ERROR | 0.11 s | 5, 6 | details | 
| #20 | RUNTIME ERROR | 0.11 s | 5, 6 | details | 
| #21 | RUNTIME ERROR | 0.12 s | 5, 6 | details | 
| #22 | TIME LIMIT EXCEEDED | -- | 6 | details | 
| #23 | TIME LIMIT EXCEEDED | -- | 6 | details | 
| #24 | TIME LIMIT EXCEEDED | -- | 6 | details | 
| #25 | TIME LIMIT EXCEEDED | -- | 6 | details | 
Code
n = int(input())
rivit = []
for i in range(0, n):
    rivit.append(input())
def getplant(x, y, map):
    return map[y][x]
x = n
y = n
def find(rows):
    #print(rows)
    x = len(rows[0])
    y = len(rows)
    thisamnt = 0
    jalkeen = rows[1:len(rows)-1]
    cut = True
    for i in range(0, x):
        if getplant(i, 0, rows) not in "".join(jalkeen):
            cut = False
            break
    if cut:
        #print(f'1Ensin {rivit} -> {jalkeen}')
        thisamnt += 1
        rows = jalkeen
        y -= 1
        thisamnt += find(jalkeen)
    jalkeen = rows[0:len(rows)-1]
    cut = True
    for i in range(0, x):
        if getplant(i, len(rows) - 1, rows) not in "".join(jalkeen):
            cut = False
            break
    if cut:
        #print(f'2Ensin {rivit} -> {jalkeen}')
        thisamnt += 1
        rows = jalkeen
        y -= 1
        thisamnt += find(jalkeen)
    jalkeen = []
    for i in range(0, len(rows) - 1):
        l = len(rows[0]) - 1
        jalkeen.append(rows[i][0:l])
    cut = True
    for i in range(0, y):
        if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
            cut = False
            break
    if cut:
        #print(f'3Ensin {rivit} -> {jalkeen}')
        thisamnt += 1
        rows = jalkeen
        x -= 1
        thisamnt += find(jalkeen)
    jalkeen = []
    for i in range(0, len(rows) - 1):
        l = len(rows[0])
        jalkeen.append(rows[i][1:l])
    cut = True
    for i in range(0, y):
        if getplant(0, i, rows) not in "".join(jalkeen):
            cut = False
            break
    if cut:
        #print(f'4Ensin {rivit} -> {jalkeen}')
        thisamnt += 1
        rows = jalkeen
        x -= 1
        thisamnt += find(jalkeen)
    return thisamnt
maara = find(rivit) + 1
print(maara)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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 72, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 64, in find
    if getplant(0, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 5
Group: 1, 2, 3, 4, 5, 6
Verdict: ACCEPTED
| input | 
|---|
| 1 X  | 
| correct output | 
|---|
| 1 | 
| user output | 
|---|
| 1 | 
Test 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 4 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 3 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 4 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 64, in find
    if getplant(0, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 19 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 20 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 19 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 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 "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 3 more times]
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 64, in find
    if getplant(0, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 14
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 NNCMDCDDCCNNNDNCMMNCDCDCCDCDNM...  | 
| correct output | 
|---|
| 25325366 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 44 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 15
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 LIMQQIHASECROEVILNVULGWZJPPKOG...  | 
| correct output | 
|---|
| 22342463 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 44 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 16
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT...  | 
| correct output | 
|---|
| 25502500 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 44 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 17
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 QXQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...  | 
| correct output | 
|---|
| 25650 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 3 more times]
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 16 more times]
  File "input/code.py", line 56, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 56, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 4...Test 18
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 NAANANMMKNKKAKMKMAKNKMNKMMNNAA...  | 
| correct output | 
|---|
| 403292767 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 94 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 19
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 OMYWATTLURKQPTKEFMGGYAOONXWVSC...  | 
| correct output | 
|---|
| 388111321 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 94 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 20
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC...  | 
| correct output | 
|---|
| 404010000 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 94 more times]
  File "input/code.py", line 48, in find
    if getplant(len(rows[0]) - 1, i, rows) not in "".join(jalkeen):
  File "input/code.py", line 7, in getplant
    return map[y][x]
IndexError: list index out of rangeTest 21
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 LLLLLLLLLLLLLLLLLHLLLLLLLLLLLL...  | 
| correct output | 
|---|
| 14159445 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 77, in <module>
    maara = find(rivit) + 1
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 27, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 70 more times]
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  [Previous line repeated 5 more times]
  File "input/code.py", line 56, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 40, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 72, in find
    thisamnt += find(jalkeen)
  File "input/code.py", line 7...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: TIME LIMIT EXCEEDED
| input | 
|---|
| 500 WWWWWWWWWWWWWWWWWWWWWWWWWWWWWW...  | 
| correct output | 
|---|
| 3058970930 | 
| user output | 
|---|
| (empty) | 
