結果

問題 No.430 文字列検索
ユーザー Ryuto KonnoRyuto Konno
提出日時 2019-11-21 13:39:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 307 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,080 KB
最終ジャッジ日時 2024-04-17 23:54:25
合計ジャッジ時間 3,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,696 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

source = input()
n = int(input())
match_list = []
for _ in range(n):
    match_list.append(input())
n_source = len(source)

answer = 0
for match in match_list:
    n_match = len(match)
    for i in range(n_source - n_match + 1):
        if match in source[i:i+n_match]:
            answer += 1
print(answer)
0