結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー ニックネームニックネーム
提出日時 2023-02-03 22:02:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 330 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 526,336 KB
最終ジャッジ日時 2024-07-02 19:57:51
合計ジャッジ時間 12,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 178 ms
76,800 KB
testcase_04 AC 96 ms
76,416 KB
testcase_05 AC 87 ms
76,288 KB
testcase_06 AC 256 ms
77,056 KB
testcase_07 AC 279 ms
76,800 KB
testcase_08 AC 230 ms
77,440 KB
testcase_09 AC 377 ms
77,184 KB
testcase_10 AC 312 ms
77,312 KB
testcase_11 AC 218 ms
76,928 KB
testcase_12 AC 259 ms
77,184 KB
testcase_13 AC 271 ms
77,568 KB
testcase_14 AC 290 ms
77,312 KB
testcase_15 AC 306 ms
77,056 KB
testcase_16 AC 140 ms
76,928 KB
testcase_17 AC 175 ms
76,928 KB
testcase_18 AC 266 ms
77,696 KB
testcase_19 AC 324 ms
77,184 KB
testcase_20 AC 282 ms
77,312 KB
testcase_21 AC 257 ms
77,184 KB
testcase_22 AC 267 ms
77,184 KB
testcase_23 AC 281 ms
77,568 KB
testcase_24 AC 433 ms
77,568 KB
testcase_25 AC 355 ms
77,696 KB
testcase_26 AC 267 ms
77,568 KB
testcase_27 AC 304 ms
76,800 KB
testcase_28 AC 296 ms
77,056 KB
testcase_29 AC 270 ms
77,184 KB
testcase_30 AC 42 ms
51,456 KB
testcase_31 AC 41 ms
51,840 KB
testcase_32 MLE -
testcase_33 AC 287 ms
76,928 KB
testcase_34 AC 44 ms
51,840 KB
testcase_35 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input(); n = len(s)
rl = [{i-1} for i in range(n)]
for i in range(n-1):
    if s[i]==s[i+1]: rl[i+1].add(i-1)
for d in range(3,n+1):
    for l in range(-1,n-d):
        if s[l+1]==s[l+d] and l+1 in rl[l+d-1]: rl[l+d].add(l)
dp = [0]*n+[n]
for r in range(n):
    for l in rl[r]: dp[r] = max(dp[r],min(dp[l],r-l))
print(dp[n-1])
0