結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー 👑 KazunKazun
提出日時 2023-02-04 01:24:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,209 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 272,256 KB
最終ジャッジ日時 2024-07-02 23:19:21
合計ジャッジ時間 28,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,328 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 575 ms
188,672 KB
testcase_04 AC 176 ms
101,760 KB
testcase_05 AC 139 ms
89,728 KB
testcase_06 AC 1,136 ms
272,000 KB
testcase_07 AC 746 ms
250,524 KB
testcase_08 AC 694 ms
234,100 KB
testcase_09 AC 825 ms
242,560 KB
testcase_10 AC 1,149 ms
272,128 KB
testcase_11 AC 694 ms
233,728 KB
testcase_12 AC 1,085 ms
269,928 KB
testcase_13 AC 1,105 ms
271,744 KB
testcase_14 AC 1,142 ms
271,812 KB
testcase_15 AC 886 ms
255,828 KB
testcase_16 AC 357 ms
149,632 KB
testcase_17 AC 490 ms
173,696 KB
testcase_18 AC 1,115 ms
271,616 KB
testcase_19 AC 1,175 ms
271,616 KB
testcase_20 AC 1,115 ms
271,616 KB
testcase_21 AC 1,103 ms
272,000 KB
testcase_22 AC 1,209 ms
271,704 KB
testcase_23 AC 1,123 ms
271,360 KB
testcase_24 AC 1,202 ms
272,256 KB
testcase_25 AC 1,164 ms
272,128 KB
testcase_26 AC 1,109 ms
272,128 KB
testcase_27 AC 605 ms
201,856 KB
testcase_28 AC 1,136 ms
271,700 KB
testcase_29 AC 1,101 ms
272,128 KB
testcase_30 AC 38 ms
51,456 KB
testcase_31 AC 39 ms
51,968 KB
testcase_32 AC 753 ms
222,464 KB
testcase_33 AC 1,127 ms
271,744 KB
testcase_34 AC 39 ms
52,224 KB
testcase_35 AC 752 ms
222,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    S="*"+input(); N=len(S)-1

    E=[[None for r in range(N+2)] for l in range(N+2)]
    for l in range(N+1,-1,-1):
        El=E[l]
        Ell=E[l+1] if l<N+1 else None
        for r in range(l,N+2):
            if r-l<=1:
                El[r]=True
            else:
                El[r]=(S[l]==S[r-1]) and Ell[r-1]

    DP=[0]*(N+1); DP[0]=N+1
    for i in range(1,N+1):
        for j in range(1,i+1):
            if E[j][i+1]:
                DP[i]=max(DP[i], min(DP[j-1], i-j+1))
    return DP[N]

#==================================================
print(solve())
0