結果
問題 | No.599 回文かい |
ユーザー | 山本信二 |
提出日時 | 2022-04-07 08:56:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 746 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-05 21:31:11 |
合計ジャッジ時間 | 13,692 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,752 KB |
testcase_01 | AC | 33 ms
10,368 KB |
testcase_02 | AC | 31 ms
10,496 KB |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | AC | 40 ms
10,624 KB |
testcase_05 | AC | 37 ms
10,496 KB |
testcase_06 | AC | 40 ms
10,368 KB |
testcase_07 | AC | 43 ms
10,624 KB |
testcase_08 | AC | 41 ms
10,624 KB |
testcase_09 | AC | 37 ms
10,624 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 2,752 ms
10,624 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
evil_0.txt | -- | - |
ソースコード
MOD = 10 ** 9 + 7 S = input() N = len(S) def z_algorithm(S): """compute the lengths of common prefix. """ N = len(S) arr = [0] * N arr[0] = N i, j = 1, 0 while i < N: while i + j < N and S[j] == S[i + j]: j += 1 arr[i] = j if not j: i += 1 continue k = 1 while i + k < N and k + arr[k] < j: arr[i + k] = arr[k] k += 1 i += k j -= k return arr M = N // 2 dp = [1] * (M + 1) for n in range(M, -1, -1): T = S[n: N - n] if not T: continue Z = z_algorithm(T) for i in range(1, len(T) // 2 + 1): if Z[-i] == i: dp[n] += dp[n + i] dp[n] %= MOD print(dp[0])