def precompute_hashes(text: str, pattern_length: int, a: int, h: int) -> list: text_length = len(text) hashes = [] text_hash = 0 # 最初の部分文字列のハッシュを計算する for i in range(pattern_length): text_hash = (a * text_hash + ord(text[i])) % h hashes.append(text_hash) a_l = pow(a, pattern_length, h) # a^l を計算 for i in range(1, text_length - pattern_length + 1): # ローリングハッシュを使って次の部分文字列のハッシュを計算する text_hash = (text_hash * a - a_l * ord(text[i - 1]) + ord(text[i + pattern_length - 1])) % h if text_hash < 0: text_hash += h hashes.append(text_hash) return hashes def rolling_hash(text: str, pattern: str, precomputed_hashes: list, a: int, h: int) -> int: pattern_length = len(pattern) pattern_hash = 0 # パターンのハッシュを計算する for i in range(pattern_length): pattern_hash = (a * pattern_hash + ord(pattern[i])) % h # 事前計算されたハッシュ値とパターンのハッシュを比較する return sum(1 for hash_value in precomputed_hashes if hash_value == pattern_hash) def main(): a = 31 h = 998244353 S = input().strip() M = int(input()) ans = 0 text_length = len(S) for _ in range(M): C = input().strip() pattern_length = len(C) # 事前にS中の全ての部分文字列のハッシュを計算 precomputed_hashes = precompute_hashes(S, pattern_length, a, h) # ハッシュを使ってパターンの出現回数をカウント ans += rolling_hash(S, C, precomputed_hashes, a, h) print(ans) if __name__ == "__main__": main()