結果

問題 No.106 素数が嫌い!2
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-17 17:53:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 622 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-07-08 08:25:39
合計ジャッジ時間 5,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
26,048 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 302 ms
26,104 KB
testcase_05 AC 551 ms
41,660 KB
testcase_06 AC 622 ms
41,856 KB
testcase_07 AC 545 ms
41,732 KB
testcase_08 AC 61 ms
12,672 KB
testcase_09 AC 58 ms
12,672 KB
testcase_10 AC 610 ms
41,664 KB
testcase_11 AC 256 ms
24,308 KB
testcase_12 AC 588 ms
40,576 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 25 ms
10,496 KB
testcase_15 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, K):
    ps = [0] * (N + 1)
    for i in range(2, N + 1):
        if ps[i]:
            continue
        for j in range(i, N + 1, i):
            ps[j] += 1

    count = 0
    for pi in ps[2:]:
        if pi >= K:
            count += 1
    return count

N, K = map(int, input().split())
print(solve(N, K))
0