結果
問題 | No.599 回文かい |
ユーザー | sibasyun |
提出日時 | 2023-12-15 11:32:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 862 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 19,228 KB |
最終ジャッジ日時 | 2024-09-27 06:13:15 |
合計ジャッジ時間 | 6,682 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,880 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | AC | 29 ms
10,752 KB |
testcase_05 | AC | 33 ms
10,880 KB |
testcase_06 | AC | 28 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | AC | 28 ms
10,752 KB |
testcase_09 | AC | 29 ms
10,752 KB |
testcase_10 | AC | 40 ms
11,008 KB |
testcase_11 | AC | 40 ms
10,880 KB |
testcase_12 | AC | 67 ms
10,880 KB |
testcase_13 | AC | 98 ms
10,880 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
evil_0.txt | -- | - |
ソースコード
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 mod = 10**9+7 _INPUT = """\ aaaaa """ def main(): T = input() N = len(T) dp = [-1 for _ in range(N+1)] # 区間l,rのときのケース数 def dfs(l): if dp[l] != -1: return dp[l] else: r = N-l 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) ret %= mod dp[l] = ret return ret dfs(0) print(dp[0]%mod) if __name__ == "__main__": # sys.stdin = io.StringIO(_INPUT) main()