結果
問題 | No.430 文字列検索 |
ユーザー | takakin |
提出日時 | 2020-04-24 00:36:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 163,800 KB |
最終ジャッジ日時 | 2024-11-10 00:43:31 |
合計ジャッジ時間 | 3,542 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
16,128 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() S=input() n=len(S) m=int(input()) import collections RH=[collections.defaultdict(int) for _ in range(n)] base=37;mod=10**9+7 pw=[1]*(n+1) v=1 for i in range(n): pw[i+1]=v=v*base%mod for l in range(n): v=0 for i in range(l+1): v=((v+ord(S[i]))*base)%mod RH[l][v]+=1 for i in range(l+1,n): v=(((v-ord(S[i-l-1])*pow(base,l+1,mod))+ord(S[i]))*base)%mod RH[l][v]+=1 ans=0 for _ in range(m): C=input() lc=len(C) if lc>n: continue else: v=0 for i in range(lc): v=((v+ord(C[i]))*base)%mod ans+=RH[lc-1][v] print(ans)