結果

問題 No.430 文字列検索
ユーザー vwxyzvwxyz
提出日時 2023-08-10 09:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 164,096 KB
最終ジャッジ日時 2024-11-10 01:06:57
合計ジャッジ時間 2,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,376 KB
testcase_01 AC 228 ms
164,096 KB
testcase_02 AC 95 ms
76,288 KB
testcase_03 AC 95 ms
76,288 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 39 ms
53,504 KB
testcase_06 AC 39 ms
53,504 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 223 ms
163,968 KB
testcase_09 AC 39 ms
53,632 KB
testcase_10 AC 61 ms
74,496 KB
testcase_11 AC 121 ms
89,032 KB
testcase_12 AC 124 ms
89,288 KB
testcase_13 AC 124 ms
89,300 KB
testcase_14 AC 113 ms
83,584 KB
testcase_15 AC 107 ms
80,640 KB
testcase_16 AC 98 ms
76,288 KB
testcase_17 AC 94 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
from collections import defaultdict

S=readline().rstrip()
N=len(S)
cnt=defaultdict(int)
for le in range(1,11):
    for i in range(N-le+1):
        cnt[S[i:i+le]]+=1
M=int(readline())
ans=0
for m in range(M):
    C=readline().rstrip()
    ans+=cnt[C]
print(ans)
0