結果

問題 No.106 素数が嫌い!2
ユーザー gorugo30gorugo30
提出日時 2021-02-26 20:41:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 83,736 KB
最終ジャッジ日時 2024-10-02 13:10:55
合計ジャッジ時間 2,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
53,208 KB
testcase_02 AC 38 ms
51,864 KB
testcase_03 WA -
testcase_04 AC 77 ms
72,520 KB
testcase_05 AC 112 ms
83,736 KB
testcase_06 AC 111 ms
82,432 KB
testcase_07 AC 109 ms
82,688 KB
testcase_08 AC 52 ms
63,360 KB
testcase_09 AC 52 ms
62,976 KB
testcase_10 AC 105 ms
82,304 KB
testcase_11 AC 68 ms
70,912 KB
testcase_12 AC 122 ms
82,304 KB
testcase_13 WA -
testcase_14 AC 37 ms
51,456 KB
testcase_15 AC 41 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
sieve = [0] * (N + 1)
for i in range(2, N + 1):
    if sieve[i] == 0:
        for j in range(2 * i, N + 1, i):
            sieve[j] += 1
ans = 0
for i in range(2, N + 1):
    if sieve[i] >= K:
        ans += 1
print(ans)
0