結果

問題 No.273 回文分解
ユーザー lloyzlloyz
提出日時 2023-03-15 00:04:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 66,796 KB
最終ジャッジ日時 2024-09-18 08:31:09
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,428 KB
testcase_01 AC 37 ms
58,640 KB
testcase_02 AC 33 ms
52,524 KB
testcase_03 AC 34 ms
52,540 KB
testcase_04 AC 33 ms
53,572 KB
testcase_05 AC 39 ms
59,280 KB
testcase_06 AC 38 ms
59,436 KB
testcase_07 AC 35 ms
53,624 KB
testcase_08 AC 39 ms
61,092 KB
testcase_09 AC 42 ms
57,776 KB
testcase_10 AC 35 ms
53,136 KB
testcase_11 AC 33 ms
53,104 KB
testcase_12 AC 34 ms
52,072 KB
testcase_13 AC 34 ms
53,136 KB
testcase_14 AC 48 ms
66,468 KB
testcase_15 AC 36 ms
52,928 KB
testcase_16 AC 38 ms
52,720 KB
testcase_17 AC 38 ms
52,720 KB
testcase_18 AC 39 ms
53,228 KB
testcase_19 AC 43 ms
59,056 KB
testcase_20 AC 39 ms
52,204 KB
testcase_21 AC 39 ms
52,580 KB
testcase_22 AC 53 ms
65,880 KB
testcase_23 AC 52 ms
65,004 KB
testcase_24 AC 51 ms
66,060 KB
testcase_25 AC 49 ms
66,496 KB
testcase_26 AC 50 ms
65,264 KB
testcase_27 AC 51 ms
66,796 KB
testcase_28 AC 49 ms
65,544 KB
testcase_29 AC 41 ms
61,852 KB
testcase_30 AC 46 ms
66,696 KB
testcase_31 AC 34 ms
52,896 KB
testcase_32 AC 32 ms
52,684 KB
testcase_33 AC 34 ms
52,000 KB
testcase_34 AC 33 ms
53,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())

def f(s):
    n = len(s)
    rs = [None for _ in range(n)]
    for i in range(n):
        rs[i] = s[n - i - 1]
    return s == rs
ans = 1
n = len(s)
for i in range(n):
    for j in range(i + 1, n):
        if j - i == n - 1:
            continue
        if f(s[i:j + 1]):
            ans = max(ans, j - i + 1)
print(ans)
0