結果

問題 No.430 文字列検索
ユーザー 💕💖💞💕💖💞
提出日時 2017-01-28 18:43:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-10 00:14:06
合計ジャッジ時間 4,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 296 ms
11,648 KB
testcase_02 AC 296 ms
11,520 KB
testcase_03 AC 297 ms
11,776 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 150 ms
10,880 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 40 ms
10,752 KB
testcase_11 AC 301 ms
11,648 KB
testcase_12 AC 287 ms
11,648 KB
testcase_13 AC 300 ms
11,648 KB
testcase_14 AC 295 ms
11,648 KB
testcase_15 AC 295 ms
11,520 KB
testcase_16 AC 297 ms
11,648 KB
testcase_17 AC 299 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
m = int(input())
search = set()
[search.add(input()) for _ in range(m)]
maxlen = max(map(lambda x:len(x), search))
result = 0
for start in range(len(s)):
    for width in range(1, min(len(s) - start, maxlen) + 1):
        result += 1 if s[start:start+width] in search else 0
print(result)
0