結果

問題 No.599 回文かい
ユーザー ayaoniayaoni
提出日時 2021-05-03 13:10:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 4,000 ms
コード長 1,113 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,352 KB
最終ジャッジ日時 2024-07-22 03:13:30
合計ジャッジ時間 3,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 51 ms
62,464 KB
testcase_05 AC 52 ms
62,848 KB
testcase_06 AC 55 ms
62,976 KB
testcase_07 AC 59 ms
63,360 KB
testcase_08 AC 53 ms
63,232 KB
testcase_09 AC 51 ms
62,336 KB
testcase_10 AC 135 ms
67,840 KB
testcase_11 AC 102 ms
67,200 KB
testcase_12 AC 141 ms
68,352 KB
testcase_13 AC 107 ms
67,328 KB
testcase_14 AC 179 ms
68,096 KB
testcase_15 AC 199 ms
68,224 KB
testcase_16 AC 219 ms
66,304 KB
testcase_17 AC 236 ms
66,560 KB
testcase_18 AC 43 ms
58,112 KB
testcase_19 AC 44 ms
58,368 KB
testcase_20 AC 44 ms
58,496 KB
evil_0.txt AC 158 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


S = S()
N = len(S)
if N % 2 == 1:
    S = S[:N//2]+S[N//2+1:]
    N -= 1

ord_S = [ord(s) for s in S]
mod = 10**9+7
r = 1234

A = [ord_S[0]]
for i in range(1,N):
    A.append((A[-1]*r+ord_S[i]) % mod)

power_r = [1]
for _ in range(N):
    power_r.append((power_r[-1]*r) % mod)


def RH(i,j):  # S[i:j+1]のローリングハッシュ
    if i == 0:
        return A[j]
    else:
        return (A[j]-A[i-1]*power_r[j-i+1]) % mod


dp = [0]*(N//2+1)  # dp[i] = S[i:N-i]に対する答え
dp[-1] = 1
for i in range(N//2-1,-1,-1):
    x = 1
    for j in range(i,N//2):
        if RH(i,j) == RH(N-1-j,N-1-i):
            x += dp[j+1]
            x %= mod
    dp[i] = x

ans = dp[0]
print(ans)
0