結果

問題 No.430 文字列検索
ユーザー IgrmiIgrmi
提出日時 2021-10-28 02:40:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,806 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-11-10 00:58:09
合計ジャッジ時間 18,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 1,735 ms
70,016 KB
testcase_02 AC 1,759 ms
68,736 KB
testcase_03 AC 1,782 ms
69,120 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 53 ms
60,928 KB
testcase_09 AC 40 ms
53,248 KB
testcase_10 AC 50 ms
60,288 KB
testcase_11 AC 1,789 ms
69,888 KB
testcase_12 AC 1,806 ms
70,400 KB
testcase_13 AC 1,762 ms
69,888 KB
testcase_14 AC 1,764 ms
70,144 KB
testcase_15 AC 1,747 ms
70,272 KB
testcase_16 AC 1,750 ms
70,016 KB
testcase_17 AC 1,769 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Base = 1676943010
MOD = 2147483647
S = input()
Q = int(input())
Ans = 0
for _ in range(Q):
    T = input()
    if len(S) < len(T): continue
    SHash = 0
    THash = 0
    B = 1
    for i in range(len(T) - 1, -1, -1):
        SHash += ord(S[i]) * B
        SHash %= MOD
        THash += ord(T[i]) * B
        THash %= MOD
        B *= Base
        B %= MOD
    if SHash == THash: Ans += 1
    for i in range(len(S) - len(T)):
        SHash = ((SHash * Base - ord(S[i]) * B) + ord(S[i + len(T)])) % MOD
        if SHash == THash: Ans += 1
print(Ans)
0