結果

問題 No.599 回文かい
ユーザー sibasyunsibasyun
提出日時 2023-12-15 11:26:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 847 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 681,236 KB
最終ジャッジ日時 2023-12-15 11:26:21
合計ジャッジ時間 14,557 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,112 KB
testcase_01 AC 32 ms
10,112 KB
testcase_02 AC 29 ms
10,112 KB
testcase_03 AC 29 ms
10,112 KB
testcase_04 AC 35 ms
11,264 KB
testcase_05 WA -
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 34 ms
11,392 KB
testcase_08 AC 34 ms
11,392 KB
testcase_09 WA -
testcase_10 MLE -
testcase_11 AC 1,344 ms
247,552 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import io
import sys
import bisect
import math
from itertools import permutations, combinations
from heapq import heappush, heappop
from collections import deque
from collections import defaultdict as dd
sys.setrecursionlimit(10**7+10)

mod = 998244353

_INPUT = """\
kaibunkaibunkai


"""



def main():
    T = input()
    N = len(T)
    dp = [[-1 for _ in range(N+1)]for _ in range(N+1)] # 区間l,rのときのケース数
    def dfs(l, r):
        if dp[l][r] != -1:
            return dp[l][r]
        else:
            ret = 1
            for i in range(r-l):
                if l+i>=r-1-i:break
                if T[l:l+i+1] == T[r-1-i:r]:
                    ret += dfs(l+i+1, r-1-i)
        dp[l][r] = ret
        return ret
    dfs(0, N)
    print(dp[0][N])

if __name__ == "__main__":
    # sys.stdin = io.StringIO(_INPUT)
    main()
0