結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー minatominato
提出日時 2023-03-09 06:59:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 272,256 KB
最終ジャッジ日時 2024-09-18 02:49:03
合計ジャッジ時間 19,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 363 ms
184,132 KB
testcase_04 AC 114 ms
92,032 KB
testcase_05 AC 93 ms
90,240 KB
testcase_06 AC 720 ms
272,124 KB
testcase_07 AC 559 ms
250,756 KB
testcase_08 AC 472 ms
229,836 KB
testcase_09 AC 504 ms
230,184 KB
testcase_10 AC 717 ms
271,980 KB
testcase_11 AC 475 ms
229,948 KB
testcase_12 AC 628 ms
270,276 KB
testcase_13 AC 633 ms
272,160 KB
testcase_14 AC 731 ms
272,116 KB
testcase_15 AC 546 ms
253,108 KB
testcase_16 AC 249 ms
137,984 KB
testcase_17 AC 341 ms
161,024 KB
testcase_18 AC 719 ms
272,040 KB
testcase_19 AC 725 ms
272,060 KB
testcase_20 AC 716 ms
272,020 KB
testcase_21 AC 630 ms
272,000 KB
testcase_22 AC 638 ms
272,052 KB
testcase_23 AC 641 ms
272,056 KB
testcase_24 AC 809 ms
272,060 KB
testcase_25 AC 810 ms
272,144 KB
testcase_26 AC 766 ms
272,204 KB
testcase_27 AC 444 ms
202,588 KB
testcase_28 AC 737 ms
272,004 KB
testcase_29 AC 633 ms
272,156 KB
testcase_30 AC 35 ms
51,712 KB
testcase_31 AC 33 ms
52,224 KB
testcase_32 AC 809 ms
223,104 KB
testcase_33 AC 730 ms
272,256 KB
testcase_34 AC 34 ms
52,860 KB
testcase_35 AC 825 ms
223,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
N = len(S)

ok = [[False] * N for _ in range(N)]
for i in range(N):
    l = r = i
    while l >= 0 and r < N and S[l] == S[r]:
        ok[l][r] = True
        l -= 1
        r += 1

    l = i
    r = i + 1
    while l >= 0 and r < N and S[l] == S[r]:
        ok[l][r] = True
        l -= 1
        r += 1

INF = 10**9
dp = [0] * (N + 1)
dp[0] = INF

for i in range(1, N + 1):
    for j in range(i):
        if ok[j][i - 1]:
            dp[i] = max(dp[i], min(dp[j], i - j))

print(dp[N])
0