結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
81,088 KB
testcase_01 AC 86 ms
81,556 KB
testcase_02 AC 86 ms
80,940 KB
testcase_03 AC 85 ms
81,068 KB
testcase_04 AC 84 ms
82,460 KB
testcase_05 AC 87 ms
81,848 KB
testcase_06 AC 87 ms
81,024 KB
testcase_07 AC 87 ms
82,096 KB
testcase_08 AC 86 ms
82,112 KB
testcase_09 AC 89 ms
80,696 KB
testcase_10 AC 86 ms
81,008 KB
testcase_11 AC 86 ms
81,328 KB
testcase_12 AC 85 ms
81,484 KB
testcase_13 AC 86 ms
81,828 KB
testcase_14 AC 86 ms
81,284 KB
testcase_15 AC 85 ms
82,560 KB
testcase_16 AC 87 ms
81,884 KB
testcase_17 AC 88 ms
81,760 KB
testcase_18 AC 90 ms
81,984 KB
testcase_19 AC 87 ms
80,504 KB
testcase_20 AC 87 ms
81,088 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