結果

問題 No.106 素数が嫌い!2
ユーザー ssmkzkssmkzk
提出日時 2019-03-25 23:46:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,337 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 99,484 KB
最終ジャッジ日時 2024-10-09 19:55:07
合計ジャッジ時間 17,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,240 ms
55,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 1,203 ms
54,844 KB
testcase_05 AC 2,265 ms
98,672 KB
testcase_06 AC 2,164 ms
98,816 KB
testcase_07 AC 2,327 ms
98,688 KB
testcase_08 AC 172 ms
16,652 KB
testcase_09 AC 157 ms
16,880 KB
testcase_10 AC 2,302 ms
99,484 KB
testcase_11 AC 910 ms
48,828 KB
testcase_12 AC 2,337 ms
95,340 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N, K = map(int, input().split()) 

def SoE(x):
    if x < 2:
        return []
    
    l = [i for i in range(x + 1)]
    l[1] = 0
    
    for i in l:
        if i > math.sqrt(x):
            break
        if i == 0:
            continue
        for j in range(2 * i , x + 1, i):
            l[j] = 0
    
    return [i for i in l if i != 0]

prime_l = SoE(N)

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

for li in prime_l:
    ck = li
    while ck <= N:
        l[ck] += 1
        ck += li

l.sort()
l.reverse()

count = 0

for li in l:
    if li >= K:
        count += 1
    else:
        break

print(count)
0