結果

問題 No.588 空白と回文
ユーザー toyuzukotoyuzuko
提出日時 2020-08-24 23:01:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,192 KB
最終ジャッジ日時 2024-11-06 10:51:53
合計ジャッジ時間 2,246 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,780 KB
testcase_01 AC 37 ms
52,556 KB
testcase_02 AC 38 ms
53,168 KB
testcase_03 AC 61 ms
75,552 KB
testcase_04 AC 38 ms
52,396 KB
testcase_05 AC 38 ms
53,428 KB
testcase_06 AC 41 ms
59,576 KB
testcase_07 AC 38 ms
52,876 KB
testcase_08 AC 37 ms
52,196 KB
testcase_09 AC 38 ms
52,004 KB
testcase_10 AC 39 ms
53,136 KB
testcase_11 AC 62 ms
76,192 KB
testcase_12 AC 51 ms
70,348 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,352 KB
testcase_15 WA -
testcase_16 AC 38 ms
52,280 KB
testcase_17 AC 55 ms
71,656 KB
testcase_18 AC 38 ms
52,948 KB
testcase_19 AC 38 ms
52,488 KB
testcase_20 WA -
testcase_21 AC 59 ms
74,032 KB
testcase_22 WA -
testcase_23 AC 57 ms
71,680 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
L = len(S)
res = 0
for i in range(L):
    tmp = 1
    for j in range(min(i, L - 1 - i)):
        if S[i - j - 1] == S[i + j + 1]:
            tmp += 2
    res = max(res, tmp)
for i in range(L - 1):
    if S[i] != S[i + 1]:
        continue
    tmp = 2
    for j in range(min(i, L - 2 - i)):
        if S[i - j - 1] == S[i + j + 2]:
            tmp += 2
    res = max(res, tmp)
print(res)
0