結果

問題 No.273 回文分解
ユーザー togatogatogatoga
提出日時 2015-09-01 22:21:03
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 853 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-12-23 11:55:35
合計ジャッジ時間 10,706 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,520 KB
testcase_01 AC 12 ms
12,800 KB
testcase_02 AC 12 ms
12,544 KB
testcase_03 AC 12 ms
11,520 KB
testcase_04 AC 11 ms
11,520 KB
testcase_05 AC 25 ms
6,272 KB
testcase_06 AC 11 ms
6,400 KB
testcase_07 AC 12 ms
6,528 KB
testcase_08 AC 11 ms
6,528 KB
testcase_09 AC 12 ms
6,528 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 11 ms
6,144 KB
testcase_12 AC 11 ms
6,272 KB
testcase_13 AC 11 ms
6,272 KB
testcase_14 AC 19 ms
6,400 KB
testcase_15 AC 11 ms
6,144 KB
testcase_16 AC 12 ms
6,400 KB
testcase_17 AC 11 ms
6,272 KB
testcase_18 AC 11 ms
6,272 KB
testcase_19 AC 12 ms
6,400 KB
testcase_20 AC 13 ms
6,272 KB
testcase_21 AC 13 ms
6,400 KB
testcase_22 AC 11 ms
6,400 KB
testcase_23 AC 12 ms
6,272 KB
testcase_24 AC 12 ms
6,400 KB
testcase_25 AC 12 ms
6,400 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 11 ms
6,400 KB
testcase_30 AC 13 ms
6,400 KB
testcase_31 AC 11 ms
6,272 KB
testcase_32 AC 11 ms
6,272 KB
testcase_33 AC 11 ms
6,272 KB
testcase_34 AC 11 ms
12,800 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 - 1):
    if (pail[0][i]):
        solve(i + 1, i + 1)
print ans
0