結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-03 23:38:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 576 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 272,364 KB
最終ジャッジ日時 2024-07-02 21:40:31
合計ジャッジ時間 10,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 218 ms
184,064 KB
testcase_04 AC 91 ms
92,112 KB
testcase_05 AC 91 ms
90,240 KB
testcase_06 AC 317 ms
271,804 KB
testcase_07 AC 291 ms
250,752 KB
testcase_08 AC 269 ms
230,016 KB
testcase_09 AC 271 ms
230,016 KB
testcase_10 AC 320 ms
271,744 KB
testcase_11 AC 265 ms
229,980 KB
testcase_12 AC 316 ms
270,208 KB
testcase_13 AC 317 ms
272,128 KB
testcase_14 AC 322 ms
272,056 KB
testcase_15 AC 299 ms
253,176 KB
testcase_16 AC 154 ms
138,112 KB
testcase_17 AC 193 ms
160,896 KB
testcase_18 AC 318 ms
272,256 KB
testcase_19 AC 321 ms
271,812 KB
testcase_20 AC 319 ms
272,128 KB
testcase_21 AC 317 ms
271,744 KB
testcase_22 AC 316 ms
272,000 KB
testcase_23 AC 317 ms
272,080 KB
testcase_24 AC 324 ms
272,364 KB
testcase_25 AC 321 ms
272,076 KB
testcase_26 AC 322 ms
272,000 KB
testcase_27 AC 237 ms
202,368 KB
testcase_28 AC 323 ms
271,872 KB
testcase_29 AC 319 ms
271,872 KB
testcase_30 AC 40 ms
51,712 KB
testcase_31 AC 41 ms
51,840 KB
testcase_32 AC 576 ms
222,976 KB
testcase_33 AC 315 ms
271,812 KB
testcase_34 AC 37 ms
51,968 KB
testcase_35 AC 574 ms
223,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = len(S)
pal = [[0]*(n+1) for i in range(n+1)]


for i in range(n):
    l = i
    r = i
    while l >= 0 and r < n and S[l] == S[r]:
        pal[l][r+1] = 1
        l -= 1
        r += 1

    l = i
    r = i+1
    
    while l >= 0 and r < n and S[l] == S[r]:
        pal[l][r+1] = 1
        l -= 1
        r += 1

dp = [-1]*(n+1)
dp[0] = n+1
for i in range(n):
    if dp[i] == -1:
        continue
    for j in range(i+1,n+1):
        if pal[i][j]:
            dp[j] = max(dp[j],min(dp[i],j-i))
print(dp[-1])
0