結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,460 KB
testcase_01 AC 38 ms
59,084 KB
testcase_02 AC 41 ms
60,672 KB
testcase_03 AC 40 ms
59,100 KB
testcase_04 AC 37 ms
59,728 KB
testcase_05 AC 42 ms
58,904 KB
testcase_06 AC 47 ms
60,676 KB
testcase_07 AC 38 ms
58,756 KB
testcase_08 AC 36 ms
58,796 KB
testcase_09 AC 39 ms
58,848 KB
testcase_10 AC 39 ms
59,216 KB
testcase_11 AC 36 ms
59,180 KB
testcase_12 AC 38 ms
60,660 KB
testcase_13 AC 37 ms
58,996 KB
testcase_14 AC 36 ms
59,296 KB
testcase_15 AC 35 ms
59,480 KB
testcase_16 AC 38 ms
58,736 KB
testcase_17 AC 38 ms
59,616 KB
testcase_18 AC 37 ms
58,556 KB
testcase_19 AC 36 ms
59,384 KB
testcase_20 AC 37 ms
59,112 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