結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー ntudantuda
提出日時 2023-02-06 21:01:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 320 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 77,356 KB
最終ジャッジ日時 2024-07-04 23:24:22
合計ジャッジ時間 32,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,216 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 1,112 ms
76,416 KB
testcase_04 AC 185 ms
75,776 KB
testcase_05 AC 114 ms
76,416 KB
testcase_06 TLE -
testcase_07 AC 1,795 ms
77,008 KB
testcase_08 AC 1,601 ms
76,488 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 1,848 ms
76,776 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 652 ms
76,416 KB
testcase_17 AC 876 ms
76,544 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,245 ms
77,120 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 38 ms
53,596 KB
testcase_31 AC 37 ms
53,292 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
T = S[::-1]
E = [[i+1] for i in range(N)]
for i in range(N):
    for j in range(2, N - i + 1):
        if S[i:i + j] == T[N - i - j:N - i]:
            E[i].append(i + j)
dp = [0] * (N + 1)
dp[0] = N
for i in range(N):
    for j in E[i]:
        dp[j] = max(dp[j], min(dp[i], j - i))
print(dp[N])
0