結果

問題 No.106 素数が嫌い!2
ユーザー matsu7874matsu7874
提出日時 2015-11-29 20:07:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,481 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-09-14 05:14:37
合計ジャッジ時間 17,815 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,249 ms
18,688 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 1,216 ms
18,560 KB
testcase_05 AC 2,315 ms
26,496 KB
testcase_06 AC 2,481 ms
26,496 KB
testcase_07 AC 2,270 ms
26,496 KB
testcase_08 AC 171 ms
11,904 KB
testcase_09 AC 167 ms
11,776 KB
testcase_10 AC 2,314 ms
26,240 KB
testcase_11 AC 1,023 ms
17,792 KB
testcase_12 AC 2,386 ms
25,728 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = [0 for i in range(N + 1)]
for i in range(2, N + 1, 2):
    A[i] += 1
for i in range(3, N + 1, 2):
    if A[i] > 0:
        continue
    j = 1
    while i * j <= N:
        A[i * j] += 1
        j += 1
cnt = 0
for i in range(2, N + 1):
    if A[i] >= K:
        cnt += 1
print(cnt)
0