結果

問題 No.599 回文かい
ユーザー torikuminotorikumino
提出日時 2019-05-04 15:16:15
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 331 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 85,188 KB
最終ジャッジ日時 2024-06-22 19:06:06
合計ジャッジ時間 19,135 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,356 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 37 ms
53,312 KB
testcase_03 AC 37 ms
52,616 KB
testcase_04 AC 70 ms
75,552 KB
testcase_05 AC 67 ms
76,124 KB
testcase_06 AC 69 ms
75,796 KB
testcase_07 AC 75 ms
75,820 KB
testcase_08 AC 71 ms
75,848 KB
testcase_09 AC 68 ms
75,748 KB
testcase_10 AC 3,670 ms
77,356 KB
testcase_11 AC 2,189 ms
76,848 KB
testcase_12 TLE -
testcase_13 AC 2,435 ms
77,356 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
p = 10**9+7
m = 2**64
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] 
print(dp[0]%p)
0