結果

問題 No.430 文字列検索
ユーザー mitsuomitsuo
提出日時 2018-08-24 10:06:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 481 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-11-10 00:19:41
合計ジャッジ時間 5,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 481 ms
52,352 KB
testcase_02 AC 363 ms
11,136 KB
testcase_03 AC 370 ms
11,008 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 470 ms
51,904 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 64 ms
13,412 KB
testcase_11 AC 394 ms
16,944 KB
testcase_12 AC 393 ms
16,808 KB
testcase_13 AC 384 ms
16,684 KB
testcase_14 AC 373 ms
14,248 KB
testcase_15 AC 369 ms
12,912 KB
testcase_16 AC 367 ms
11,264 KB
testcase_17 AC 371 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(S, Cs):
    counts = {}
    for i in range(1, 11):
        for k in range(0, len(S)):
            if k + i > len(S): continue

            counts.setdefault(S[k:k+i], 0)
            counts[S[k:k+i]] += 1

    sum = 0
    for C in Cs:
        if C in counts:
            sum += counts[C]
    return sum

if __name__ == "__main__":
    S = input()
    M = int(input())
    print(solve(S, [input() for _ in range(0, M)]))
0