結果

問題 No.273 回文分解
ユーザー yansi819yansi819
提出日時 2024-05-22 09:18:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 517 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 421,844 KB
最終ジャッジ日時 2024-05-22 09:18:40
合計ジャッジ時間 5,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
61,632 KB
testcase_01 AC 37 ms
54,924 KB
testcase_02 AC 37 ms
54,544 KB
testcase_03 AC 37 ms
54,552 KB
testcase_04 AC 37 ms
53,628 KB
testcase_05 AC 57 ms
72,836 KB
testcase_06 AC 39 ms
54,504 KB
testcase_07 AC 36 ms
53,692 KB
testcase_08 AC 39 ms
55,440 KB
testcase_09 AC 39 ms
53,876 KB
testcase_10 AC 40 ms
54,356 KB
testcase_11 AC 40 ms
55,032 KB
testcase_12 AC 40 ms
55,564 KB
testcase_13 AC 36 ms
54,088 KB
testcase_14 AC 50 ms
67,448 KB
testcase_15 AC 37 ms
54,160 KB
testcase_16 AC 36 ms
54,216 KB
testcase_17 AC 37 ms
54,264 KB
testcase_18 AC 36 ms
55,368 KB
testcase_19 AC 40 ms
61,060 KB
testcase_20 AC 50 ms
65,848 KB
testcase_21 AC 50 ms
66,652 KB
testcase_22 AC 40 ms
62,128 KB
testcase_23 AC 40 ms
61,596 KB
testcase_24 AC 46 ms
63,304 KB
testcase_25 AC 41 ms
61,288 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
S = input().rstrip()
lst = deque([(0, 0)])
MAX = 0
while len(lst) > 0:
    k, cnt = lst.popleft()
    c = S[k]
    for i in range(k, len(S)):
        if S[i] == c:
            for j in range(0, (i - k + 1) // 2):
                if S[k + j] != S[i - j]:
                    break
            else:
                if i != len(S) - 1 or cnt > 0:
                    MAX = max(MAX, i - k + 1)
                if i != len(S) - 1:
                    lst.append((i + 1, cnt + 1))
print(MAX)
0