結果

問題 No.430 文字列検索
ユーザー ntudantuda
提出日時 2024-02-13 21:17:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 164,308 KB
最終ジャッジ日時 2024-11-10 01:10:09
合計ジャッジ時間 2,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,120 KB
testcase_01 AC 219 ms
164,308 KB
testcase_02 AC 96 ms
76,604 KB
testcase_03 AC 99 ms
76,456 KB
testcase_04 AC 41 ms
53,248 KB
testcase_05 AC 35 ms
53,632 KB
testcase_06 AC 36 ms
53,120 KB
testcase_07 AC 36 ms
53,760 KB
testcase_08 AC 198 ms
164,044 KB
testcase_09 AC 37 ms
54,400 KB
testcase_10 AC 56 ms
74,496 KB
testcase_11 AC 127 ms
89,300 KB
testcase_12 AC 128 ms
89,172 KB
testcase_13 AC 128 ms
89,300 KB
testcase_14 AC 121 ms
83,328 KB
testcase_15 AC 117 ms
80,848 KB
testcase_16 AC 104 ms
76,800 KB
testcase_17 AC 98 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
from collections import defaultdict

dic = defaultdict(int)
for i in range(1, 11):
    for j in range(N + 1 - i):
        dic[S[j:j + i]] += 1
ans = 0
for _ in range(int(input())):
    C = input()
    ans += dic[C]
print(ans)
0