結果

問題 No.599 回文かい
ユーザー vwxyzvwxyz
提出日時 2022-10-23 23:34:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,576 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 77,160 KB
最終ジャッジ日時 2024-07-02 12:02:33
合計ジャッジ時間 13,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 68 ms
72,192 KB
testcase_05 AC 67 ms
70,528 KB
testcase_06 AC 70 ms
72,576 KB
testcase_07 AC 77 ms
75,692 KB
testcase_08 AC 70 ms
72,320 KB
testcase_09 AC 68 ms
70,656 KB
testcase_10 AC 975 ms
76,848 KB
testcase_11 AC 612 ms
76,960 KB
testcase_12 AC 1,092 ms
77,072 KB
testcase_13 AC 730 ms
76,704 KB
testcase_14 WA -
testcase_15 AC 1,825 ms
77,160 KB
testcase_16 AC 1,733 ms
77,028 KB
testcase_17 AC 2,122 ms
76,956 KB
testcase_18 AC 46 ms
59,776 KB
testcase_19 AC 46 ms
59,520 KB
testcase_20 AC 45 ms
59,776 KB
evil_0.txt AC 1,346 ms
76,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

class Rolling_Hash:
    def __init__(self,lst,base,mod):
        self.len=len(lst)
        self.base=base
        self.mod=mod
        self.rolling_hash=[None]*(self.len+1)
        self.rolling_hash[0]=0
        x=1
        for i in range(1,self.len+1):
            self.rolling_hash[i]=self.rolling_hash[i-1]+x*lst[i-1]
            self.rolling_hash[i]%=self.mod
            x*=self.base
            x%=self.mod
        x=pow(x,self.mod-2,self.mod)
        self.base_reverse=[None]*(self.len+1)
        self.base_reverse[self.len]=x
        for i in range(self.len-1,-1,-1):
            self.base_reverse[i]=self.base_reverse[i+1]*self.base%self.mod

    def __getitem__(self,i):
        if type(i)==int:
            a,b=i,i+1
        else:
            a,b=i.start,i.stop
            if a==None or a<-self.len:
                a=0
            elif self.len<=a:
                a=self.len
            elif a<0:
                a+=self.len
            if b==None or self.len<=b:
                b=self.len
            elif b<-self.len:
                b=0
            elif b<0:
                b+=self.len
        return (self.rolling_hash[b]-self.rolling_hash[a])*self.base_reverse[a]%self.mod

    def __len__(self):
        return self.len

S=readline().rstrip()
N=len(S)
base=1<<50
S=Rolling_Hash([ord(s) for s in S],base,(1<<61)-1)
mod=10**9+7
dp=[0]*(N//2+1)
for i in range(N//2,-1,-1):
    dp[i]+=1
    for j in range(i+1,N//2+1):
        if S[i:j]==S[N-j:N-i]:
            dp[i]+=dp[j]
            dp[i]%=mod
ans=dp[0]
print(ans)
0