結果
問題 | No.430 文字列検索 |
ユーザー | ayaoni |
提出日時 | 2021-05-03 23:25:47 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,369 ms / 2,000 ms |
コード長 | 1,023 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 81,792 KB |
最終ジャッジ日時 | 2024-11-10 00:55:22 |
合計ジャッジ時間 | 14,500 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,224 KB |
testcase_01 | AC | 1,369 ms
78,720 KB |
testcase_02 | AC | 1,341 ms
74,240 KB |
testcase_03 | AC | 1,263 ms
77,824 KB |
testcase_04 | AC | 34 ms
51,840 KB |
testcase_05 | AC | 34 ms
51,840 KB |
testcase_06 | AC | 34 ms
51,840 KB |
testcase_07 | AC | 34 ms
51,968 KB |
testcase_08 | AC | 59 ms
73,088 KB |
testcase_09 | AC | 36 ms
52,608 KB |
testcase_10 | AC | 52 ms
63,488 KB |
testcase_11 | AC | 1,275 ms
79,104 KB |
testcase_12 | AC | 1,340 ms
78,720 KB |
testcase_13 | AC | 1,343 ms
78,336 KB |
testcase_14 | AC | 1,339 ms
78,848 KB |
testcase_15 | AC | 1,342 ms
78,720 KB |
testcase_16 | AC | 1,349 ms
78,720 KB |
testcase_17 | AC | 1,358 ms
81,792 KB |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) T = S() N = len(T) base = 1234 mod = 10**9+7 AH = [0] for t in T: AH.append((AH[-1]*base+ord(t)) % mod) base_power = [1] for _ in range(N): base_power.append((base_power[-1]*base) % mod) def RH(i,j): # (i,j] return (AH[j]-AH[i]*base_power[j-i]) % mod M = I() ans = 0 for _ in range(M): C = S() len_C = len(C) if len_C > N: continue rh = 0 for i in range(len_C): rh += ord(C[i])*base_power[len_C-1-i] rh %= mod for i in range(N-len_C+1): if rh == RH(i,i+len_C): ans += 1 print(ans)