結果

問題 No.273 回文分解
ユーザー c-yanc-yan
提出日時 2021-01-18 00:12:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 411 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 137,984 KB
最終ジャッジ日時 2024-11-30 06:44:41
合計ジャッジ時間 11,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,832 KB
testcase_01 AC 41 ms
137,472 KB
testcase_02 AC 41 ms
59,308 KB
testcase_03 AC 41 ms
57,088 KB
testcase_04 AC 40 ms
57,344 KB
testcase_05 AC 96 ms
76,320 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 40 ms
51,328 KB
testcase_11 AC 40 ms
51,456 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 41 ms
51,456 KB
testcase_14 AC 120 ms
76,288 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 40 ms
52,352 KB
testcase_19 AC 46 ms
60,928 KB
testcase_20 AC 49 ms
63,360 KB
testcase_21 AC 64 ms
74,164 KB
testcase_22 AC 47 ms
64,768 KB
testcase_23 AC 48 ms
64,384 KB
testcase_24 AC 52 ms
70,016 KB
testcase_25 AC 49 ms
64,640 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 41 ms
53,888 KB
testcase_30 AC 59 ms
74,624 KB
testcase_31 AC 41 ms
51,712 KB
testcase_32 AC 40 ms
51,456 KB
testcase_33 AC 40 ms
51,456 KB
testcase_34 AC 39 ms
137,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_palindrome(s):
    return s == s[::-1]


def f(s):
    if len(s) == 1:
        return 1

    result = 0
    for i in range(1, len(s)):
        a, b = s[:i], s[i:]
        if not is_palindrome(a):
            continue
        result = max(result, len(a))
        if is_palindrome(b):
            result = max(result, len(b))
        result = max(result, f(b))
    return result


S = input()

print(f(S))
0