結果

問題 No.2750 Number of Prime Factors
ユーザー detteiuudetteiuu
提出日時 2024-05-10 21:29:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 60,272 KB
最終ジャッジ日時 2024-12-20 04:22:12
合計ジャッジ時間 2,166 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,752 KB
testcase_01 AC 46 ms
60,208 KB
testcase_02 AC 46 ms
59,164 KB
testcase_03 AC 45 ms
60,272 KB
testcase_04 AC 46 ms
58,812 KB
testcase_05 AC 49 ms
59,436 KB
testcase_06 AC 49 ms
58,880 KB
testcase_07 AC 48 ms
59,700 KB
testcase_08 AC 46 ms
59,420 KB
testcase_09 AC 45 ms
59,772 KB
testcase_10 AC 45 ms
58,792 KB
testcase_11 AC 47 ms
58,828 KB
testcase_12 AC 46 ms
59,764 KB
testcase_13 AC 44 ms
59,048 KB
testcase_14 AC 46 ms
59,380 KB
testcase_15 AC 46 ms
60,140 KB
testcase_16 AC 44 ms
58,708 KB
testcase_17 AC 44 ms
58,904 KB
testcase_18 AC 45 ms
58,868 KB
testcase_19 AC 47 ms
60,156 KB
testcase_20 AC 46 ms
59,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def eratosthenes(n):
    sieve = [True] * (n + 1)
    for i in range(int(n**0.5) + 1):
        if i < 2:
            sieve[i] = False
        elif sieve[i]:
            for j in range(2, n//i + 1):
                sieve[i * j] = False
    ans = []
    for i in range(n+1):
        if sieve[i]:
            ans.append(i)
    return ans

prime = eratosthenes(10000)
SUM = 1
for i in range(len(prime)):
    SUM *= prime[i]
    if SUM > N:
        print(i)
        break
0