結果

問題 No.430 文字列検索
ユーザー masatosismasatosis
提出日時 2022-05-12 13:22:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,105 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 92,352 KB
最終ジャッジ日時 2024-11-10 01:00:45
合計ジャッジ時間 7,846 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 1,098 ms
92,352 KB
testcase_02 AC 457 ms
11,648 KB
testcase_03 AC 457 ms
11,776 KB
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 28 ms
11,136 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 29 ms
11,136 KB
testcase_08 AC 1,105 ms
92,172 KB
testcase_09 AC 31 ms
11,008 KB
testcase_10 AC 119 ms
17,044 KB
testcase_11 AC 574 ms
22,736 KB
testcase_12 AC 595 ms
22,736 KB
testcase_13 AC 596 ms
22,736 KB
testcase_14 AC 522 ms
17,744 KB
testcase_15 AC 492 ms
15,448 KB
testcase_16 AC 493 ms
12,032 KB
testcase_17 AC 468 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter, defaultdict
from random import randint


S = input()
hash_dict = defaultdict(lambda: randint(1, (1 << 64) - 1))
d = Counter()
for i in range(len(S)):
    for j in range(1, 11):
        if i + j > len(S):
            continue
        # print(i, j, S[i : i + j + 1])
        d[hash_dict[S[i : i + j]]] += 1

# print(d, hash_dict)
M = int(input())
ans = 0
for _ in range(M):
    C = input()
    ans += d[hash_dict[C]]
print(ans)
0