結果

問題 No.430 文字列検索
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2021-07-17 14:33:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 170,612 KB
最終ジャッジ日時 2024-11-10 00:57:08
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,248 KB
testcase_01 AC 279 ms
170,572 KB
testcase_02 AC 149 ms
113,280 KB
testcase_03 AC 153 ms
113,024 KB
testcase_04 AC 36 ms
53,632 KB
testcase_05 AC 36 ms
53,632 KB
testcase_06 AC 36 ms
53,760 KB
testcase_07 AC 37 ms
53,632 KB
testcase_08 AC 264 ms
170,612 KB
testcase_09 AC 38 ms
54,272 KB
testcase_10 AC 60 ms
79,232 KB
testcase_11 AC 207 ms
120,404 KB
testcase_12 AC 206 ms
120,264 KB
testcase_13 AC 199 ms
120,340 KB
testcase_14 AC 183 ms
113,640 KB
testcase_15 AC 173 ms
113,344 KB
testcase_16 AC 149 ms
113,152 KB
testcase_17 AC 151 ms
113,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
l = len(S)
#Sから作れる部分文字列を全列挙。
s = []
for i in range(l):
  for j in range(1, 11):
    if i +j <= l:
      s.append(S[i:i+j])

import collections
s = collections.Counter(s)

m = int(input())
ans = 0
for _ in range(m):
  c = input()
  ans += s[c]

print(ans)
0