結果

問題 No.106 素数が嫌い!2
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-02 20:11:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 475 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 83,832 KB
最終ジャッジ日時 2024-11-15 15:44:01
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
77,856 KB
testcase_01 AC 91 ms
75,748 KB
testcase_02 AC 91 ms
75,700 KB
testcase_03 AC 90 ms
76,448 KB
testcase_04 AC 266 ms
79,908 KB
testcase_05 AC 460 ms
82,244 KB
testcase_06 AC 475 ms
83,832 KB
testcase_07 AC 443 ms
78,208 KB
testcase_08 AC 120 ms
79,604 KB
testcase_09 AC 115 ms
78,432 KB
testcase_10 AC 450 ms
78,400 KB
testcase_11 AC 244 ms
81,676 KB
testcase_12 AC 441 ms
78,908 KB
testcase_13 AC 88 ms
76,252 KB
testcase_14 AC 86 ms
76,508 KB
testcase_15 AC 91 ms
78,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = 2*10**6+50
spf = [-1]*(N+1)
for i in range(N+1):
    spf[i] = i
for i in range(2, int(math.sqrt(N))+1):
    if spf[i] == i:
        for j in range(i*2, N+1, i):
            if spf[j] == j:
                spf[j] = i

n, k = map(int, input().split())
ans = 0
for i in range(1, n+1):
    cnt = 0
    while i != 1:
        p = spf[i]
        cnt += 1
        while i%p == 0:
            i //= p
    if cnt >= k:
        ans += 1
print(ans)
0