結果

問題 No.430 文字列検索
ユーザー satama6satama6
提出日時 2022-05-09 15:40:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 159,668 KB
最終ジャッジ日時 2024-11-10 01:00:12
合計ジャッジ時間 3,378 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 322 ms
153,980 KB
testcase_02 AC 138 ms
76,416 KB
testcase_03 AC 134 ms
76,672 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 42 ms
51,456 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 303 ms
159,668 KB
testcase_09 AC 45 ms
52,736 KB
testcase_10 AC 68 ms
72,320 KB
testcase_11 AC 204 ms
89,856 KB
testcase_12 AC 211 ms
89,728 KB
testcase_13 AC 213 ms
89,856 KB
testcase_14 AC 189 ms
83,840 KB
testcase_15 AC 166 ms
81,024 KB
testcase_16 AC 138 ms
76,544 KB
testcase_17 AC 137 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
M = int(input())
C = []
for _ in range(M):
    C.append(input())

cnt = dict()

N = len(S)
for i in range(N):
    s = ''
    for l in range(1, 11):
        j = i - l + 1
        if j < 0:
            break
        s = S[j] + s
        if s in cnt:
            cnt[s] += 1
        else:
            cnt[s] = 1

ans = 0
for i in range(M):
    if C[i] in cnt:
        ans += cnt[C[i]]

print(ans)
0