結果

問題 No.588 空白と回文
ユーザー convexineqconvexineq
提出日時 2021-03-08 02:16:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 75,972 KB
最終ジャッジ日時 2024-10-09 12:30:52
合計ジャッジ時間 2,744 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,376 KB
testcase_01 AC 37 ms
52,404 KB
testcase_02 AC 37 ms
52,256 KB
testcase_03 AC 101 ms
75,648 KB
testcase_04 AC 36 ms
53,024 KB
testcase_05 AC 38 ms
52,992 KB
testcase_06 AC 45 ms
61,308 KB
testcase_07 AC 37 ms
51,880 KB
testcase_08 AC 36 ms
52,984 KB
testcase_09 AC 37 ms
52,392 KB
testcase_10 AC 38 ms
54,024 KB
testcase_11 AC 104 ms
75,972 KB
testcase_12 AC 105 ms
75,860 KB
testcase_13 AC 38 ms
52,284 KB
testcase_14 AC 36 ms
53,076 KB
testcase_15 AC 36 ms
52,940 KB
testcase_16 AC 37 ms
52,872 KB
testcase_17 AC 92 ms
75,228 KB
testcase_18 AC 42 ms
59,320 KB
testcase_19 AC 37 ms
52,196 KB
testcase_20 AC 106 ms
75,740 KB
testcase_21 AC 108 ms
75,692 KB
testcase_22 AC 107 ms
75,520 KB
testcase_23 AC 93 ms
75,224 KB
testcase_24 AC 38 ms
53,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(s,t):
    return sum(si==ti for si,ti in zip(s,t))

s = input()
ans = 0
for i in range(len(s)):
    ans = max(ans,solve(s[i:],s[::-1]))
    ans = max(ans,solve(s,s[:i][::-1]))
print(ans)
0