結果

問題 No.588 空白と回文
ユーザー KazunKazun
提出日時 2020-11-27 03:54:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 78,068 KB
最終ジャッジ日時 2024-07-23 21:19:14
合計ジャッジ時間 5,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,364 KB
testcase_01 AC 56 ms
65,068 KB
testcase_02 AC 56 ms
64,348 KB
testcase_03 AC 799 ms
77,920 KB
testcase_04 AC 57 ms
65,356 KB
testcase_05 AC 56 ms
64,108 KB
testcase_06 AC 60 ms
66,980 KB
testcase_07 AC 56 ms
64,284 KB
testcase_08 AC 58 ms
63,892 KB
testcase_09 AC 55 ms
63,892 KB
testcase_10 AC 57 ms
65,124 KB
testcase_11 AC 796 ms
77,440 KB
testcase_12 AC 102 ms
77,660 KB
testcase_13 AC 57 ms
64,364 KB
testcase_14 AC 57 ms
64,312 KB
testcase_15 AC 55 ms
64,352 KB
testcase_16 AC 58 ms
63,804 KB
testcase_17 AC 415 ms
77,304 KB
testcase_18 AC 58 ms
64,460 KB
testcase_19 AC 54 ms
64,348 KB
testcase_20 AC 161 ms
77,568 KB
testcase_21 AC 527 ms
77,368 KB
testcase_22 AC 185 ms
78,068 KB
testcase_23 AC 355 ms
77,272 KB
testcase_24 AC 56 ms
63,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_lowercase

X=ascii_lowercase+"0123456789"
D={x:[] for x in X}

S=input()
N=len(S)

for i in range(N):
    D[S[i]].append(i)

#長さが奇数
K=0
for i in range(N):
    e=1
    A=1
    while 0<=i-e and i+e<N:
        if S[i-e]==S[i+e]:A+=2
        e+=1
    K=max(K,A)

#長さが偶数
for x in D:
    E=D[x]
    L=len(E)

    for i in range(L):
        p=E[i]
        for j in range(i+1,L):
            e=1
            A=2
            q=E[j]
            while 0<=p-e and q+e<N:
                if S[p-e]==S[q+e]:A+=2
                e+=1
            K=max(K,A)

print(K)
0