結果

問題 No.588 空白と回文
ユーザー titiatitia
提出日時 2024-05-26 02:39:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 83,968 KB
最終ジャッジ日時 2024-05-26 02:39:47
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,228 KB
testcase_01 AC 37 ms
52,584 KB
testcase_02 AC 34 ms
52,604 KB
testcase_03 AC 68 ms
83,828 KB
testcase_04 AC 33 ms
52,708 KB
testcase_05 AC 34 ms
53,672 KB
testcase_06 AC 41 ms
61,280 KB
testcase_07 AC 32 ms
52,856 KB
testcase_08 AC 33 ms
52,556 KB
testcase_09 AC 32 ms
52,008 KB
testcase_10 AC 33 ms
53,976 KB
testcase_11 AC 93 ms
83,880 KB
testcase_12 AC 96 ms
83,668 KB
testcase_13 WA -
testcase_14 AC 34 ms
53,980 KB
testcase_15 WA -
testcase_16 AC 40 ms
52,592 KB
testcase_17 AC 67 ms
80,880 KB
testcase_18 AC 36 ms
53,148 KB
testcase_19 AC 36 ms
52,836 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 63 ms
80,280 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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==i+1:
            ANS=max(ANS,DP[i][j]*2)
        else:
            ANS=max(ANS,DP[i][j]*2+1)

print(ANS)
0