結果

問題 No.430 文字列検索
ユーザー mlihua09mlihua09
提出日時 2020-08-31 20:56:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 164,148 KB
最終ジャッジ日時 2024-11-10 00:46:20
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,760 KB
testcase_01 AC 226 ms
164,044 KB
testcase_02 AC 103 ms
76,672 KB
testcase_03 AC 103 ms
76,692 KB
testcase_04 AC 36 ms
53,376 KB
testcase_05 AC 36 ms
53,504 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 36 ms
53,376 KB
testcase_08 AC 202 ms
164,148 KB
testcase_09 AC 38 ms
54,400 KB
testcase_10 AC 54 ms
74,624 KB
testcase_11 AC 129 ms
89,296 KB
testcase_12 AC 129 ms
89,428 KB
testcase_13 AC 127 ms
89,424 KB
testcase_14 AC 116 ms
83,584 KB
testcase_15 AC 112 ms
80,896 KB
testcase_16 AC 101 ms
76,800 KB
testcase_17 AC 101 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


S = input()
n = len(S)

from collections import defaultdict

x = defaultdict(int)

for i in range(1, 11):
    
    for j in range(n - i + 1):
        
        x[S[j:j + i]] += 1
        
M = int(input())


print(sum([x[input()] for i in range(M)]))
0