結果

問題 No.106 素数が嫌い!2
ユーザー lloyzlloyz
提出日時 2023-07-05 00:06:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 99,584 KB
最終ジャッジ日時 2024-07-18 18:57:02
合計ジャッジ時間 2,587 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
80,896 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 96 ms
80,928 KB
testcase_05 AC 193 ms
99,584 KB
testcase_06 AC 192 ms
99,328 KB
testcase_07 AC 190 ms
98,816 KB
testcase_08 AC 56 ms
65,280 KB
testcase_09 AC 54 ms
64,384 KB
testcase_10 AC 197 ms
98,944 KB
testcase_11 AC 108 ms
79,104 KB
testcase_12 AC 203 ms
97,792 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 42 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

IsPrime = [True for _ in range(n + 1)]
IsPrime[0] = IsPrime[1] = False
C = [0 for _ in range(n + 1)]
for i in range(2, n + 1):
    if IsPrime[i]:
        C[i] += 1
        for j in range(i + i, n + 1, i):
            C[j] += 1
            IsPrime[j] = False
ans = 0
for i in range(2, n + 1):
    if C[i] >= k:
        ans += 1
print(ans)
0