結果

問題 No.599 回文かい
ユーザー shotoyooshotoyoo
提出日時 2021-09-26 10:24:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,096 ms / 4,000 ms
コード長 854 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-05 15:35:38
合計ジャッジ時間 7,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 53 ms
61,952 KB
testcase_05 AC 49 ms
62,080 KB
testcase_06 AC 49 ms
62,848 KB
testcase_07 AC 48 ms
62,336 KB
testcase_08 AC 48 ms
62,464 KB
testcase_09 AC 47 ms
61,824 KB
testcase_10 AC 479 ms
75,852 KB
testcase_11 AC 280 ms
75,848 KB
testcase_12 AC 523 ms
76,032 KB
testcase_13 AC 330 ms
75,652 KB
testcase_14 AC 713 ms
76,032 KB
testcase_15 AC 817 ms
76,288 KB
testcase_16 AC 912 ms
76,244 KB
testcase_17 AC 1,096 ms
75,976 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 37 ms
52,340 KB
testcase_20 AC 35 ms
52,480 KB
evil_0.txt AC 657 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

def sub(s):
    s = [ord(c) for c in s]
    b = 128
    cum = [0]
    v = 1
    for i in range(len(s)):
        v *= b
        v %= M
        cum.append(cum[-1] + v*s[i]%M)
    bs = [1]
    for _ in range(len(s)+10):
        bs.append(bs[-1]*b%M)
    n = len(s)
    m = (n)//2 + 1
    dp = [0]*(m)
    dp[0] = 1
    for i in range(1,m):
        val = 0
        for j in range(i):
#             if s[j:i]==s[n-i:n-j]:
            if ((cum[i]-cum[j])*bs[n-j-i]%M == (cum[n-j]-cum[n-i])%M):
                val += dp[j]
                if val>M:
                    val -= M
        dp[i] = val%M
    return sum(dp)
M = 10**9+7
s = input()
ans = sub(s)
print(ans%M)
0