結果

問題 No.430 文字列検索
ユーザー Rei TsukadaRei Tsukada
提出日時 2024-08-24 10:49:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 52,176 KB
最終ジャッジ日時 2024-11-10 01:12:41
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 260 ms
52,176 KB
testcase_02 AC 198 ms
10,752 KB
testcase_03 AC 203 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 249 ms
52,016 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 40 ms
13,508 KB
testcase_11 AC 202 ms
16,504 KB
testcase_12 AC 206 ms
16,632 KB
testcase_13 AC 205 ms
16,504 KB
testcase_14 AC 197 ms
13,940 KB
testcase_15 AC 198 ms
12,604 KB
testcase_16 AC 195 ms
10,880 KB
testcase_17 AC 196 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    S = input().strip()
    M = int(input())
    
    substring_count = {}
    n = len(S)

    # 全ての長さ10以下の部分文字列を数える
    for i in range(n):
        sub = ""
        for j in range(i, min(i + 10, n)):
            sub += S[j]
            if sub in substring_count:
                substring_count[sub] += 1
            else:
                substring_count[sub] = 1

    ans = 0

    for _ in range(M):
        C = input().strip()
        # 事前に数えておいた結果から、対応する部分文字列の出現回数を取得
        if C in substring_count:
            ans += substring_count[C]

    print(ans)

if __name__ == "__main__":
    main()
0