結果

問題 No.2750 Number of Prime Factors
ユーザー rlangevinrlangevin
提出日時 2024-05-10 21:30:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 82,728 KB
最終ジャッジ日時 2024-05-10 21:30:04
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
81,484 KB
testcase_01 AC 82 ms
82,240 KB
testcase_02 AC 83 ms
81,760 KB
testcase_03 AC 86 ms
81,544 KB
testcase_04 AC 81 ms
80,836 KB
testcase_05 AC 79 ms
80,820 KB
testcase_06 AC 79 ms
81,056 KB
testcase_07 AC 87 ms
81,568 KB
testcase_08 AC 81 ms
82,244 KB
testcase_09 AC 80 ms
82,360 KB
testcase_10 AC 81 ms
80,692 KB
testcase_11 AC 80 ms
81,840 KB
testcase_12 AC 80 ms
81,288 KB
testcase_13 AC 83 ms
81,688 KB
testcase_14 AC 84 ms
82,728 KB
testcase_15 AC 83 ms
80,924 KB
testcase_16 AC 81 ms
80,504 KB
testcase_17 AC 81 ms
81,084 KB
testcase_18 AC 80 ms
81,088 KB
testcase_19 AC 83 ms
81,880 KB
testcase_20 AC 80 ms
81,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil, sqrt
def Sieve(n):
    lst = [True] * (n + 1)
    lst[0] = lst[1] = False
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return sorted(list(S))

N = int(input())
S = Sieve(10**6)
v, c = 1, 0
S.reverse()
while v * S[-1] <= N:
    v *= S.pop()
    c += 1
    
print(c)
0