結果

問題 No.430 文字列検索
ユーザー convexineqconvexineq
提出日時 2021-02-04 09:23:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 175 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 75,400 KB
最終ジャッジ日時 2024-11-10 00:53:13
合計ジャッジ時間 6,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
57,216 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 34 ms
51,872 KB
testcase_05 AC 33 ms
52,884 KB
testcase_06 AC 33 ms
51,984 KB
testcase_07 AC 34 ms
53,428 KB
testcase_08 AC 45 ms
60,860 KB
testcase_09 AC 36 ms
53,288 KB
testcase_10 AC 44 ms
60,336 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
m = int(input())
ans = 0
ls = len(s)
for _ in range(m):
    t = input()
    lt = len(t)
    for i in range(ls-lt+1):
        if s[i:i+lt] == t :ans += 1
print(ans)
0