結果
問題 | No.599 回文かい |
ユーザー | roaris |
提出日時 | 2020-12-04 19:13:45 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 903 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 285,104 KB |
最終ジャッジ日時 | 2024-09-15 06:06:24 |
合計ジャッジ時間 | 7,593 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
56,172 KB |
testcase_01 | AC | 43 ms
53,632 KB |
testcase_02 | AC | 44 ms
53,376 KB |
testcase_03 | AC | 43 ms
53,376 KB |
testcase_04 | AC | 53 ms
62,976 KB |
testcase_05 | AC | 60 ms
66,560 KB |
testcase_06 | AC | 44 ms
54,144 KB |
testcase_07 | AC | 52 ms
61,056 KB |
testcase_08 | AC | 49 ms
60,432 KB |
testcase_09 | AC | 63 ms
65,280 KB |
testcase_10 | AC | 52 ms
64,128 KB |
testcase_11 | AC | 53 ms
62,976 KB |
testcase_12 | AC | 56 ms
67,712 KB |
testcase_13 | AC | 72 ms
76,928 KB |
testcase_14 | MLE | - |
testcase_15 | AC | 105 ms
82,472 KB |
testcase_16 | MLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
evil_0.txt | -- | - |
ソースコード
import sys input = sys.stdin.readline sys.setrecursionlimit(10**5) from collections import * def z_algo(s): c = 0 n = len(s) z = [0]*n for i in range(1, n): l = i-c if i+z[l]<c+z[c]: z[i] = z[l] else: j = max(0, c+z[c]-i) while i+j<n and s[j]==s[i+j]: j += 1 z[i] = j c = i z[0] = n return z def f(l, r): if l==r: return 1 t = s[l:r] if memo[t]!=-1: return memo[t] z = z_algo(t) res = 1 for i in range(len(t)-1, -1, -1): com = len(t)-i if z[i]==com and 2*com<=r-l: res += f(l+com, r-com) res %= MOD memo[t] = res return res s = input()[:-1] memo = defaultdict(lambda: -1) MOD = 10**9+7 print(f(0, len(s)))