結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー 👑 KazunKazun
提出日時 2023-02-04 01:19:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,103 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,584 KB
実行使用メモリ 272,232 KB
最終ジャッジ日時 2024-07-02 23:14:15
合計ジャッジ時間 25,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,340 KB
testcase_01 AC 32 ms
54,100 KB
testcase_02 AC 31 ms
52,744 KB
testcase_03 AC 503 ms
189,004 KB
testcase_04 AC 148 ms
102,060 KB
testcase_05 AC 117 ms
90,432 KB
testcase_06 AC 983 ms
271,324 KB
testcase_07 AC 681 ms
250,140 KB
testcase_08 AC 627 ms
234,504 KB
testcase_09 AC 729 ms
242,988 KB
testcase_10 AC 1,015 ms
271,460 KB
testcase_11 AC 621 ms
233,816 KB
testcase_12 AC 968 ms
269,384 KB
testcase_13 AC 974 ms
271,692 KB
testcase_14 AC 1,006 ms
271,616 KB
testcase_15 AC 787 ms
256,212 KB
testcase_16 AC 312 ms
149,848 KB
testcase_17 AC 456 ms
174,100 KB
testcase_18 AC 1,001 ms
272,200 KB
testcase_19 AC 1,049 ms
271,636 KB
testcase_20 AC 1,019 ms
272,200 KB
testcase_21 AC 1,013 ms
272,172 KB
testcase_22 AC 1,078 ms
271,576 KB
testcase_23 AC 1,032 ms
272,200 KB
testcase_24 AC 1,103 ms
271,956 KB
testcase_25 AC 1,034 ms
272,184 KB
testcase_26 AC 1,000 ms
272,180 KB
testcase_27 AC 540 ms
202,460 KB
testcase_28 AC 1,069 ms
272,016 KB
testcase_29 AC 997 ms
272,232 KB
testcase_30 AC 34 ms
52,992 KB
testcase_31 AC 34 ms
52,060 KB
testcase_32 AC 702 ms
222,372 KB
testcase_33 AC 1,020 ms
271,956 KB
testcase_34 AC 38 ms
51,812 KB
testcase_35 AC 713 ms
222,676 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]

    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