結果

問題 No.273 回文分解
ユーザー togatogatogatoga
提出日時 2015-09-01 22:20:14
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 849 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-12-23 11:55:08
合計ジャッジ時間 10,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

S = raw_input()
pail = [[False for j in range(51)] for i in range(51)]
N = len(S)
ans = 0
def solve(pos, res):
    global ans
    if (pos == N):
        ans = max(ans, res)
        return 
    for i in range(pos, N):
        if (pail[pos][i]):
            next = max(res, (i - pos) + 1)
            solve(i + 1, next)
            
for i in range(N):
    left = i
    right = i
    while (left >= 0 and right < N):
        if (S[left] == S[right]):
            pail[left][right] = True
        else:
            break
        left -= 1
        right += 1
        
    left = i
    right = i + 1
    while (left >= 0 and right < N):
        if (S[left] == S[right]):
            pail[left][right] = True
        else:
            break
        left -= 1
        right += 1
for i in range(N):
    if (pail[0][i]):
        solve(i + 1, i + 1)
print ans
0