結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー ntudantuda
提出日時 2023-02-06 20:55:05
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 717 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 316,044 KB
最終ジャッジ日時 2024-07-04 23:18:51
合計ジャッジ時間 44,247 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 938 ms
76,416 KB
testcase_04 AC 184 ms
75,820 KB
testcase_05 AC 118 ms
76,388 KB
testcase_06 AC 1,680 ms
76,332 KB
testcase_07 AC 1,391 ms
76,800 KB
testcase_08 AC 1,447 ms
76,316 KB
testcase_09 AC 1,369 ms
76,812 KB
testcase_10 AC 1,907 ms
76,540 KB
testcase_11 AC 1,316 ms
76,672 KB
testcase_12 AC 1,493 ms
76,876 KB
testcase_13 AC 1,579 ms
76,612 KB
testcase_14 TLE -
testcase_15 AC 1,557 ms
76,788 KB
testcase_16 AC 532 ms
76,284 KB
testcase_17 AC 774 ms
76,504 KB
testcase_18 AC 1,711 ms
76,520 KB
testcase_19 AC 1,645 ms
77,024 KB
testcase_20 AC 1,849 ms
77,036 KB
testcase_21 AC 1,971 ms
76,540 KB
testcase_22 AC 1,761 ms
76,500 KB
testcase_23 AC 1,987 ms
76,752 KB
testcase_24 TLE -
testcase_25 AC 1,967 ms
76,732 KB
testcase_26 AC 1,673 ms
77,024 KB
testcase_27 AC 946 ms
76,672 KB
testcase_28 AC 1,692 ms
76,720 KB
testcase_29 AC 1,620 ms
77,020 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 689 ms
307,968 KB
testcase_33 TLE -
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 652 ms
316,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
T = S[::-1]
E = [[] for _ in range(N)]
l = 0
for r in range(1, N + 1):
    r2 = r;
    l2 = l
    while r2 - l2 > 0:
        if S[l2:r2] == T[N - r2:N - l2]:
            while r2 - l2 > 0:
                E[l2].append(r2)
                l2 += 1;
                r2 -= 1
        l2 += 1;
        r2 -= 1

r = N
for l in range(1, N):
    r2 = r;
    l2 = l
    while r2 - l2 > 0:
        if S[l2:r2] == T[N - r2:N - l2]:
            while r2 - l2 > 0:
                E[l2].append(r2)
                l2 += 1;
                r2 -= 1
        l2 += 1;
        r2 -= 1

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