結果

問題 No.599 回文かい
ユーザー torikuminotorikumino
提出日時 2019-05-04 16:05:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 4,000 ms
コード長 351 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 67,612 KB
最終ジャッジ日時 2024-06-23 01:08:57
合計ジャッジ時間 2,885 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,952 KB
testcase_01 AC 36 ms
52,884 KB
testcase_02 AC 36 ms
52,408 KB
testcase_03 AC 34 ms
52,632 KB
testcase_04 AC 42 ms
62,804 KB
testcase_05 AC 43 ms
62,492 KB
testcase_06 AC 43 ms
63,928 KB
testcase_07 AC 43 ms
62,780 KB
testcase_08 AC 49 ms
62,588 KB
testcase_09 AC 44 ms
62,648 KB
testcase_10 AC 101 ms
66,108 KB
testcase_11 AC 77 ms
66,548 KB
testcase_12 AC 107 ms
67,160 KB
testcase_13 AC 86 ms
66,476 KB
testcase_14 AC 142 ms
66,992 KB
testcase_15 AC 161 ms
67,612 KB
testcase_16 AC 177 ms
64,136 KB
testcase_17 AC 197 ms
65,836 KB
testcase_18 AC 38 ms
58,364 KB
testcase_19 AC 36 ms
58,160 KB
testcase_20 AC 35 ms
58,840 KB
evil_0.txt AC 120 ms
65,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
p = 65537
m = 10**9+7
h, w = [0], [1]
for c in s:
    h.append((h[-1]*p+ord(c))%m)
    w.append(w[-1]*p%m)
def H(i, j):
    return (h[j]-h[i]*w[j-i])%m
n = len(s)//2+1
dp = [1]*n
for i in range(n)[::-1]:
    for j in range(i+1, n):
        if H(i, j) == H(len(s)-j, len(s)-i):
            dp[i] += dp[j]
            dp[i] %= m
print(dp[0])
0