結果

問題 No.599 回文かい
ユーザー zimphazimpha
提出日時 2017-12-05 21:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 4,000 ms
コード長 545 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-05-06 10:45:50
合計ジャッジ時間 2,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 36 ms
51,456 KB
testcase_04 AC 50 ms
61,056 KB
testcase_05 AC 48 ms
61,184 KB
testcase_06 AC 50 ms
62,208 KB
testcase_07 AC 50 ms
62,080 KB
testcase_08 AC 50 ms
62,080 KB
testcase_09 AC 48 ms
61,952 KB
testcase_10 AC 124 ms
63,744 KB
testcase_11 AC 93 ms
63,616 KB
testcase_12 AC 131 ms
63,744 KB
testcase_13 AC 99 ms
63,872 KB
testcase_14 AC 176 ms
64,768 KB
testcase_15 AC 190 ms
64,768 KB
testcase_16 AC 197 ms
63,360 KB
testcase_17 AC 228 ms
63,232 KB
testcase_18 AC 40 ms
57,344 KB
testcase_19 AC 41 ms
57,984 KB
testcase_20 AC 42 ms
57,472 KB
evil_0.txt AC 156 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

seed, mod = 65537, 10 ** 9 + 7

s = input()
n = len(s)

hs = [0] * (n + 1)
pw = [1] * (n + 1)
for i in range(1, n + 1):
    pw[i] = pw[i - 1] * seed % mod
for i in range(n, 0, -1):
    hs[i - 1] = (hs[i] * seed + ord(s[i - 1])) % mod

def hash_value(l, r):
    return (hs[l] - hs[r] * pw[r - l] % mod + mod) % mod

dp = [1] * (n // 2 + 1)
for i in range(n // 2):
    dp[i + 1] = 0
    for j in range(i + 1):
        if hash_value(j, i + 1) == hash_value(n - i - 1, n - j):
            dp[i + 1] += dp[j]
    dp[i + 1] %= mod
print(sum(dp) % mod)
0