結果
問題 | No.430 文字列検索 |
ユーザー | rlangevin |
提出日時 | 2023-09-07 00:15:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 967 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 92,928 KB |
最終ジャッジ日時 | 2024-11-10 01:07:01 |
合計ジャッジ時間 | 3,549 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
57,216 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 = sys.stdin.readline class RollingHash(): def __init__(self, s): self._mod = 2 ** 64 - 1 self._base = 4649 n = len(s) self.h = [0] * (n + 1) self.pw = [1] * (n + 1) for i in range(n): self.h[i + 1] = self.h[i] * self._base + ord(s[i]) self.h[i + 1] %= self._mod for i in range(n): self.pw[i + 1] = self.pw[i] * self._base self.pw[i + 1] %= self._mod """ s[l:r]のhash値 """ def get(self, l, r): return (self.h[r] - self.h[l] * self.pw[r - l]) % self._mod S = list(input().rstrip()) Sr = RollingHash(S) ans = 0 M = int(input()) for _ in range(M): C = list(input().rstrip()) if len(C) > len(S): continue Cr = RollingHash(C) for i in range(len(S) - len(C) + 1): if Cr.get(0, len(C)) == Sr.get(i, i + len(C)): ans += 1 print(ans)