結果

問題 No.273 回文分解
ユーザー convexineqconvexineq
提出日時 2020-12-19 23:42:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 708 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 67,260 KB
最終ジャッジ日時 2024-09-21 10:46:06
合計ジャッジ時間 3,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,476 KB
testcase_01 AC 42 ms
59,168 KB
testcase_02 AC 37 ms
52,644 KB
testcase_03 AC 38 ms
53,144 KB
testcase_04 AC 39 ms
52,332 KB
testcase_05 AC 43 ms
59,928 KB
testcase_06 AC 44 ms
60,232 KB
testcase_07 AC 39 ms
53,076 KB
testcase_08 AC 45 ms
62,184 KB
testcase_09 AC 42 ms
59,040 KB
testcase_10 AC 37 ms
52,016 KB
testcase_11 AC 38 ms
52,628 KB
testcase_12 AC 36 ms
53,172 KB
testcase_13 AC 38 ms
53,836 KB
testcase_14 AC 51 ms
65,156 KB
testcase_15 AC 38 ms
52,708 KB
testcase_16 AC 38 ms
53,224 KB
testcase_17 AC 38 ms
52,408 KB
testcase_18 AC 37 ms
52,140 KB
testcase_19 AC 42 ms
59,088 KB
testcase_20 AC 38 ms
52,964 KB
testcase_21 AC 39 ms
53,620 KB
testcase_22 AC 54 ms
67,260 KB
testcase_23 AC 53 ms
66,924 KB
testcase_24 AC 51 ms
65,236 KB
testcase_25 AC 53 ms
66,072 KB
testcase_26 AC 54 ms
65,980 KB
testcase_27 AC 50 ms
64,868 KB
testcase_28 AC 48 ms
63,700 KB
testcase_29 AC 47 ms
63,188 KB
testcase_30 AC 48 ms
63,212 KB
testcase_31 AC 37 ms
53,172 KB
testcase_32 AC 38 ms
53,812 KB
testcase_33 AC 37 ms
52,948 KB
testcase_34 AC 38 ms
51,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)
dp = [[-1]*(n+1) for _ in range(n+1)]
for l in range(n,-1,-1):
    for r in range(l+1,n+1):
        if (l != 0 or r != n) and s[l:r] == s[l:r][::-1]:
            dp[l][r] = r-l
        else:
            for x in range(l+1,r):
                if dp[l][x] >= 0 and dp[x][r] >= 0:
                    dp[l][r] = max(dp[l][r],dp[l][x],dp[x][r])
print(dp[l][r])
0