結果

問題 No.273 回文分解
ユーザー roiti46roiti46
提出日時 2015-08-28 22:29:17
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-06 01:01:11
合計ジャッジ時間 1,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,016 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 9 ms
6,144 KB
testcase_04 AC 9 ms
6,144 KB
testcase_05 AC 9 ms
6,272 KB
testcase_06 AC 9 ms
6,016 KB
testcase_07 AC 9 ms
6,144 KB
testcase_08 AC 9 ms
6,400 KB
testcase_09 AC 9 ms
6,144 KB
testcase_10 AC 8 ms
6,144 KB
testcase_11 AC 8 ms
6,144 KB
testcase_12 AC 9 ms
6,144 KB
testcase_13 AC 9 ms
6,016 KB
testcase_14 AC 9 ms
6,272 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 8 ms
6,144 KB
testcase_18 AC 9 ms
6,272 KB
testcase_19 AC 9 ms
6,144 KB
testcase_20 AC 9 ms
6,144 KB
testcase_21 AC 8 ms
6,016 KB
testcase_22 WA -
testcase_23 AC 9 ms
6,144 KB
testcase_24 AC 9 ms
6,400 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 9 ms
6,272 KB
testcase_28 AC 10 ms
6,144 KB
testcase_29 AC 9 ms
6,272 KB
testcase_30 AC 10 ms
6,144 KB
testcase_31 AC 9 ms
6,016 KB
testcase_32 AC 9 ms
6,144 KB
testcase_33 AC 9 ms
6,144 KB
testcase_34 AC 9 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(s):
    if memo[s] > 0: return memo[s]
    res = 1
    for i in xrange(s, N):
        if S[s:i + 1] == S[s:i + 1][::-1]:
            res = max(res, i - s + 1, dfs(i + 1))
    memo[s] = res
    return res

S = raw_input()
N = len(S)
memo = [0] * (N + 1)
ans = 1
for i in xrange(N - 1):
    if S[:i + 1] == S[:i + 1][::-1]:
        ans = max(ans, dfs(i + 1))
print ans
0