結果

問題 No.106 素数が嫌い!2
ユーザー nbisconbisco
提出日時 2017-01-19 23:03:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 469 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,304 KB
最終ジャッジ日時 2024-06-02 07:03:33
合計ジャッジ時間 14,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,452 ms
42,176 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 2,542 ms
42,304 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 #

N, K = map(int, input().split(" "))

primes = [2]
search = [i for i in range(3,N,2)]
while search[0]*search[0] < N:
    primes.append(search[0])
    _search = [i for i in search[1:] if i % search[0] != 0]
    search = _search
[primes.append(i) for i in search]

all_num = [0 for i in range(1,N+1)]


for i in primes:
    cur = i
    while cur <= N:
        all_num[cur-1] += 1
        cur += i
count = 0
for i in all_num:
    if i >= K:
        count += 1

print(count)
0