結果
| 問題 | No.430 文字列検索 |
| コンテスト | |
| ユーザー |
matsu7874
|
| 提出日時 | 2016-10-02 23:52:52 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 347 ms / 2,000 ms |
| コード長 | 270 bytes |
| 記録 | |
| コンパイル時間 | 785 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 55,284 KB |
| 最終ジャッジ日時 | 2026-05-09 08:31:51 |
| 合計ジャッジ時間 | 5,627 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
ソースコード
import collections
text = input()
len_text = len(text)
dic = collections.defaultdict(int)
for i in range(1,11):
for j in range(len_text-i+1):
dic[text[j:j+i]] += 1
total = 0
m = int(input())
for i in range(m):
c = input()
total += dic[c]
print(total)
matsu7874