結果
問題 | No.430 文字列検索 |
ユーザー | maizeaux |
提出日時 | 2022-02-08 03:35:03 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 356 ms / 2,000 ms |
コード長 | 1,432 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 93,184 KB |
最終ジャッジ日時 | 2024-11-10 00:59:36 |
合計ジャッジ時間 | 4,919 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
66,304 KB |
testcase_01 | AC | 346 ms
92,928 KB |
testcase_02 | AC | 341 ms
92,672 KB |
testcase_03 | AC | 341 ms
93,184 KB |
testcase_04 | AC | 63 ms
66,304 KB |
testcase_05 | AC | 64 ms
66,304 KB |
testcase_06 | AC | 61 ms
66,176 KB |
testcase_07 | AC | 60 ms
66,432 KB |
testcase_08 | AC | 95 ms
92,032 KB |
testcase_09 | AC | 63 ms
67,712 KB |
testcase_10 | AC | 67 ms
71,936 KB |
testcase_11 | AC | 340 ms
92,672 KB |
testcase_12 | AC | 340 ms
92,800 KB |
testcase_13 | AC | 356 ms
92,416 KB |
testcase_14 | AC | 341 ms
92,672 KB |
testcase_15 | AC | 341 ms
92,416 KB |
testcase_16 | AC | 350 ms
92,672 KB |
testcase_17 | AC | 347 ms
92,672 KB |
ソースコード
from collections import defaultdict import math import sys import os from typing import * sys.setrecursionlimit(100000) is_local = "TERM_PROGRAM" in os.environ input = sys.stdin.readline INF = float('inf') def debug(*args, **kwargs): if is_local: print(*args, **kwargs) def I(): return input().rstrip() def IS(): return input().split() def II(): return int(input()) def IIS(): return map(int, input().split()) def LIIS(): return list(map(int, input().split())) MOD = 2**61 - 1 def main(): s = I() n = len(s) hashes = [[] for _ in range(10)] hashes[0].append(ord(s[0]) - ord("A")) pows = [1] for _ in range(10): pows.append((pows[-1]*26) % MOD) for i in range(10): if i >= n: break if i > 0: hashes[i].append((hashes[i-1][0]*26 + ord(s[i]) - ord("A")) % MOD) for j in range(n - i - 1): x = hashes[i][-1] x -= (ord(s[j]) - ord("A")) * pows[i] x %= MOD x = (x * 26) % MOD x += (ord(s[j+i+1]) - ord("A")) x %= MOD hashes[i].append(x) m = II() out = 0 for _ in range(m): ss = I() l = len(ss) h = 0 for i in range(l): h *= 26 h %= MOD h += ord(ss[i]) - ord("A") h %= MOD out += hashes[l-1].count(h) print(out) if __name__ == "__main__": main()