結果

問題 No.273 回文分解
ユーザー flippergoflippergo
提出日時 2024-11-04 12:41:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 62,452 KB
最終ジャッジ日時 2024-11-04 12:41:15
合計ジャッジ時間 3,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,740 KB
testcase_01 AC 37 ms
52,924 KB
testcase_02 AC 37 ms
52,416 KB
testcase_03 AC 37 ms
52,428 KB
testcase_04 AC 38 ms
52,996 KB
testcase_05 AC 37 ms
53,020 KB
testcase_06 AC 37 ms
52,564 KB
testcase_07 AC 38 ms
52,908 KB
testcase_08 AC 38 ms
53,012 KB
testcase_09 AC 37 ms
53,716 KB
testcase_10 AC 37 ms
52,576 KB
testcase_11 AC 37 ms
52,616 KB
testcase_12 AC 37 ms
52,700 KB
testcase_13 AC 37 ms
52,884 KB
testcase_14 AC 43 ms
62,452 KB
testcase_15 AC 37 ms
52,432 KB
testcase_16 AC 37 ms
53,220 KB
testcase_17 AC 37 ms
52,488 KB
testcase_18 AC 37 ms
52,080 KB
testcase_19 AC 37 ms
52,424 KB
testcase_20 AC 37 ms
52,280 KB
testcase_21 AC 36 ms
53,136 KB
testcase_22 AC 41 ms
60,568 KB
testcase_23 AC 43 ms
60,172 KB
testcase_24 AC 42 ms
60,596 KB
testcase_25 AC 41 ms
61,640 KB
testcase_26 AC 42 ms
61,756 KB
testcase_27 AC 42 ms
61,280 KB
testcase_28 AC 67 ms
61,400 KB
testcase_29 AC 38 ms
55,096 KB
testcase_30 AC 42 ms
61,596 KB
testcase_31 AC 37 ms
52,444 KB
testcase_32 AC 37 ms
53,424 KB
testcase_33 AC 37 ms
52,304 KB
testcase_34 AC 38 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().strip()
ans = ""
for i in range(len(S)-1):
    for j in range(i+1,len(S)+1):
        if i==0 and j==len(S):continue
        a = S[i:j]
        b = a[::-1]
        if a==b and len(a)>len(ans):
            ans = a
print(len(ans))
0