結果

問題 No.2204 Palindrome Splitting (No Rearrangement ver.)
ユーザー 👑 p-adicp-adic
提出日時 2023-05-31 16:18:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 174,464 KB
最終ジャッジ日時 2024-06-08 21:59:09
合計ジャッジ時間 12,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 254 ms
132,608 KB
testcase_04 AC 116 ms
87,424 KB
testcase_05 AC 99 ms
83,072 KB
testcase_06 AC 365 ms
173,952 KB
testcase_07 AC 330 ms
160,952 KB
testcase_08 AC 316 ms
151,552 KB
testcase_09 AC 408 ms
156,032 KB
testcase_10 AC 402 ms
174,080 KB
testcase_11 AC 311 ms
151,680 KB
testcase_12 AC 377 ms
169,984 KB
testcase_13 AC 378 ms
174,336 KB
testcase_14 AC 389 ms
174,464 KB
testcase_15 AC 396 ms
165,248 KB
testcase_16 AC 190 ms
110,336 KB
testcase_17 AC 241 ms
124,032 KB
testcase_18 AC 386 ms
174,336 KB
testcase_19 AC 406 ms
173,952 KB
testcase_20 AC 389 ms
174,208 KB
testcase_21 AC 379 ms
173,952 KB
testcase_22 AC 386 ms
173,952 KB
testcase_23 AC 389 ms
174,208 KB
testcase_24 AC 469 ms
174,464 KB
testcase_25 AC 444 ms
173,952 KB
testcase_26 AC 378 ms
174,208 KB
testcase_27 AC 310 ms
137,600 KB
testcase_28 AC 405 ms
174,208 KB
testcase_29 AC 377 ms
174,464 KB
testcase_30 AC 41 ms
51,584 KB
testcase_31 AC 40 ms
51,840 KB
testcase_32 AC 315 ms
147,328 KB
testcase_33 AC 385 ms
174,080 KB
testcase_34 AC 40 ms
52,096 KB
testcase_35 AC 315 ms
147,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
S=input()
N=len(S)
P=[0]*N
P[0]=[1]*2
for i in R(1,N):P[i]=[1if i<=j else(S[j]==S[i])*P[i-1][j+1]for j in R(i+2)]
D=[0]*N
D+=[N]
for i in R(N):
	for j in R(i+1):D[i]=max(D[i],min(D[j-1],i-j+1)*P[i][j])
print(D[-2])
0