結果

問題 No.106 素数が嫌い!2
ユーザー nbisconbisco
提出日時 2017-01-19 23:24:31
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 440 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 268,120 KB
最終ジャッジ日時 2024-06-02 07:03:59
合計ジャッジ時間 14,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 958 ms
258,048 KB
testcase_01 AC 38 ms
51,960 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 949 ms
258,048 KB
testcase_05 AC 1,970 ms
266,100 KB
testcase_06 AC 1,989 ms
265,980 KB
testcase_07 AC 1,946 ms
266,108 KB
testcase_08 AC 122 ms
88,464 KB
testcase_09 AC 127 ms
90,896 KB
testcase_10 AC 1,964 ms
265,976 KB
testcase_11 AC 830 ms
246,752 KB
testcase_12 AC 1,927 ms
268,120 KB
testcase_13 RE -
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 41 ms
58,368 KB
権限があれば一括ダウンロードができます

ソースコード

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 = 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