結果

問題 No.106 素数が嫌い!2
ユーザー nbisconbisco
提出日時 2017-01-19 23:26:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,868 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 268,528 KB
最終ジャッジ日時 2024-06-02 07:04:17
合計ジャッジ時間 13,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 870 ms
257,948 KB
testcase_01 AC 36 ms
53,104 KB
testcase_02 AC 34 ms
52,640 KB
testcase_03 AC 33 ms
52,472 KB
testcase_04 AC 896 ms
258,488 KB
testcase_05 AC 1,858 ms
266,080 KB
testcase_06 AC 1,851 ms
266,260 KB
testcase_07 AC 1,868 ms
266,304 KB
testcase_08 AC 107 ms
88,444 KB
testcase_09 AC 114 ms
90,764 KB
testcase_10 AC 1,862 ms
266,156 KB
testcase_11 AC 756 ms
246,448 KB
testcase_12 AC 1,762 ms
268,528 KB
testcase_13 AC 34 ms
52,696 KB
testcase_14 AC 33 ms
53,232 KB
testcase_15 AC 38 ms
60,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

primes = [2]
if N > 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 = primes + search


all_num = [0 for i in range(1,N+1)]
for i in primes:
    for j in range(i, N+1, i):
        all_num[j-1] += 1


count = 0
for i in all_num:
    if i >= K:
        count += 1

print(count)
0