結果

問題 No.430 文字列検索
ユーザー convexineqconvexineq
提出日時 2021-02-04 09:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 164,096 KB
最終ジャッジ日時 2024-11-10 00:53:12
合計ジャッジ時間 3,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 299 ms
163,840 KB
testcase_02 AC 130 ms
76,544 KB
testcase_03 AC 127 ms
76,160 KB
testcase_04 AC 47 ms
53,632 KB
testcase_05 AC 46 ms
53,120 KB
testcase_06 AC 45 ms
53,504 KB
testcase_07 AC 46 ms
53,888 KB
testcase_08 AC 269 ms
164,096 KB
testcase_09 AC 50 ms
54,016 KB
testcase_10 AC 74 ms
74,368 KB
testcase_11 AC 164 ms
89,188 KB
testcase_12 AC 161 ms
89,316 KB
testcase_13 AC 161 ms
89,200 KB
testcase_14 AC 151 ms
83,840 KB
testcase_15 AC 144 ms
80,384 KB
testcase_16 AC 130 ms
76,416 KB
testcase_17 AC 126 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s = input()
d = Counter()
for i in range(1,11):
    for j in range(len(s)-i+1):
        d[s[j:j+i]] += 1
m = int(input())
print(sum(d[input()] for _ in range(m)))
0