結果

問題 No.430 文字列検索
ユーザー convexineqconvexineq
提出日時 2021-02-04 09:40:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 164,224 KB
最終ジャッジ日時 2024-11-10 00:53:13
合計ジャッジ時間 2,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,120 KB
testcase_01 AC 226 ms
164,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 39 ms
53,632 KB
testcase_06 AC 39 ms
53,504 KB
testcase_07 AC 40 ms
53,504 KB
testcase_08 AC 210 ms
164,224 KB
testcase_09 AC 42 ms
54,016 KB
testcase_10 AC 60 ms
73,088 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
s = input()
d = Counter()
for i in range(1,10):
    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