結果

問題 No.106 素数が嫌い!2
ユーザー kutsutamakutsutama
提出日時 2019-01-08 12:51:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 505 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,984 KB
最終ジャッジ日時 2024-05-03 03:42:34
合計ジャッジ時間 17,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,566 ms
58,984 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 3,628 ms
28,924 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n, k = [int(x) for x in input().split()]

prime = [2 * n] * n
idx_p = 0
for num in range(2, n + 1):
    is_prime = True
    sq = math.sqrt(num)
    for p in prime:
        if num % p == 0:
            is_prime = False
            break
        if p > sq:
            break
    if is_prime:
        prime[idx_p] = num
        idx_p += 1

cnt = [0] * (n + 1)
for p in prime:
    for i in range(p, n + 1, p):
        cnt[i] += 1
res = 0
for c in cnt:
    if c >= k:
        res += 1

print(res)
0