結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,248 KB
testcase_01 AC 57 ms
64,356 KB
testcase_02 AC 62 ms
65,072 KB
testcase_03 AC 804 ms
77,408 KB
testcase_04 AC 57 ms
64,356 KB
testcase_05 AC 57 ms
64,160 KB
testcase_06 AC 62 ms
67,028 KB
testcase_07 AC 59 ms
64,688 KB
testcase_08 AC 57 ms
64,608 KB
testcase_09 AC 57 ms
65,000 KB
testcase_10 AC 57 ms
65,192 KB
testcase_11 AC 802 ms
77,676 KB
testcase_12 AC 107 ms
77,984 KB
testcase_13 AC 58 ms
65,020 KB
testcase_14 AC 57 ms
64,272 KB
testcase_15 AC 58 ms
64,080 KB
testcase_16 AC 58 ms
63,924 KB
testcase_17 AC 418 ms
77,372 KB
testcase_18 AC 58 ms
64,208 KB
testcase_19 AC 57 ms
65,484 KB
testcase_20 AC 164 ms
77,536 KB
testcase_21 AC 526 ms
77,428 KB
testcase_22 AC 190 ms
77,664 KB
testcase_23 AC 357 ms
77,264 KB
testcase_24 AC 57 ms
64,064 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
    if K<A: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
            if K<A:K=A

print(K)
0