結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー 👑 KazunKazun
提出日時 2023-02-04 01:13:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 492 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 272,456 KB
最終ジャッジ日時 2024-07-02 23:08:01
合計ジャッジ時間 55,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,228 KB
testcase_01 AC 34 ms
53,164 KB
testcase_02 AC 33 ms
52,496 KB
testcase_03 AC 950 ms
188,624 KB
testcase_04 AC 203 ms
101,600 KB
testcase_05 AC 137 ms
89,680 KB
testcase_06 TLE -
testcase_07 AC 1,657 ms
250,144 KB
testcase_08 AC 1,451 ms
234,276 KB
testcase_09 AC 1,572 ms
242,520 KB
testcase_10 TLE -
testcase_11 AC 1,468 ms
234,732 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,712 ms
255,836 KB
testcase_16 AC 555 ms
150,080 KB
testcase_17 AC 793 ms
174,092 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1,063 ms
201,956 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 35 ms
52,348 KB
testcase_31 AC 33 ms
52,404 KB
testcase_32 AC 1,413 ms
222,896 KB
testcase_33 TLE -
testcase_34 AC 35 ms
52,560 KB
testcase_35 AC 1,439 ms
223,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    E=[[r-l<=1 for r in range(N+2)] for l in range(N+2)]
    for k in range(1,N+1):
        for l in range(N-k+2):
            E[l][l+k]=(S[l]==S[l+k-1]) and E[l+1][l+k-1]

    inf=float("inf")
    DP=[-inf]*(N+1); DP[0]=inf
    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