結果

問題 No.273 回文分解
ユーザー yansi819yansi819
提出日時 2024-05-22 09:39:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 61,992 KB
最終ジャッジ日時 2024-05-22 09:40:00
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,948 KB
testcase_01 AC 34 ms
52,892 KB
testcase_02 AC 35 ms
52,728 KB
testcase_03 AC 33 ms
52,760 KB
testcase_04 AC 35 ms
52,248 KB
testcase_05 AC 34 ms
54,140 KB
testcase_06 AC 33 ms
52,980 KB
testcase_07 AC 35 ms
53,220 KB
testcase_08 AC 33 ms
53,444 KB
testcase_09 AC 36 ms
53,440 KB
testcase_10 AC 33 ms
52,336 KB
testcase_11 AC 34 ms
53,256 KB
testcase_12 AC 33 ms
53,008 KB
testcase_13 AC 32 ms
52,824 KB
testcase_14 AC 39 ms
61,304 KB
testcase_15 AC 35 ms
53,824 KB
testcase_16 AC 34 ms
52,524 KB
testcase_17 AC 33 ms
52,624 KB
testcase_18 AC 32 ms
52,156 KB
testcase_19 AC 33 ms
52,580 KB
testcase_20 AC 34 ms
53,148 KB
testcase_21 AC 33 ms
51,868 KB
testcase_22 AC 37 ms
60,616 KB
testcase_23 AC 36 ms
60,652 KB
testcase_24 AC 41 ms
60,780 KB
testcase_25 AC 39 ms
61,344 KB
testcase_26 AC 38 ms
61,992 KB
testcase_27 AC 36 ms
60,840 KB
testcase_28 AC 37 ms
60,356 KB
testcase_29 AC 34 ms
55,040 KB
testcase_30 AC 38 ms
61,752 KB
testcase_31 AC 33 ms
52,684 KB
testcase_32 AC 30 ms
52,208 KB
testcase_33 AC 34 ms
52,276 KB
testcase_34 AC 35 ms
53,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().rstrip()
MAX = 0
for i in range(len(S)):
    for j in range(i + 1, len(S) + 1):
        if i == 0 and j == len(S):
            continue
        if S[i:j] == S[i:j][::-1]:
            MAX = max(MAX, j - i)
print(MAX)
0