結果

問題 No.588 空白と回文
ユーザー titiatitia
提出日時 2024-05-26 02:41:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 83,884 KB
最終ジャッジ日時 2024-05-26 02:41:45
合計ジャッジ時間 2,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,724 KB
testcase_01 AC 33 ms
53,476 KB
testcase_02 AC 34 ms
53,348 KB
testcase_03 AC 74 ms
83,868 KB
testcase_04 AC 35 ms
52,944 KB
testcase_05 AC 36 ms
53,952 KB
testcase_06 AC 45 ms
62,204 KB
testcase_07 AC 34 ms
52,344 KB
testcase_08 AC 33 ms
53,072 KB
testcase_09 AC 33 ms
52,896 KB
testcase_10 AC 32 ms
52,960 KB
testcase_11 AC 80 ms
83,884 KB
testcase_12 AC 74 ms
83,720 KB
testcase_13 AC 34 ms
52,760 KB
testcase_14 AC 33 ms
53,104 KB
testcase_15 AC 33 ms
53,568 KB
testcase_16 AC 33 ms
52,032 KB
testcase_17 AC 69 ms
80,960 KB
testcase_18 AC 39 ms
53,788 KB
testcase_19 AC 33 ms
52,952 KB
testcase_20 AC 78 ms
83,772 KB
testcase_21 AC 75 ms
81,968 KB
testcase_22 AC 75 ms
83,476 KB
testcase_23 AC 64 ms
80,228 KB
testcase_24 AC 33 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

S=input().strip()

DP=[[0]*(len(S)+3) for i in range(len(S)+3)]

for i in range(len(S)):
    for j in range(len(S)-1,i,-1):
        DP[i][j]=max(DP[i][j],DP[i-1][j+1])

        if S[i]==S[j]:
            DP[i][j]+=1

ANS=0
for i in range(len(S)):
    for j in range(i+1,len(S)):
        if j%2==i%2:
            ANS=max(ANS,DP[i][j]*2+1)
        else:
            ANS=max(ANS,DP[i][j]*2)

print(ANS)
0