結果

問題 No.2750 Number of Prime Factors
ユーザー FromBooskaFromBooska
提出日時 2024-05-10 22:40:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 54,072 KB
最終ジャッジ日時 2024-05-10 22:40:28
合計ジャッジ時間 1,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,408 KB
testcase_01 AC 34 ms
51,748 KB
testcase_02 AC 33 ms
52,236 KB
testcase_03 AC 33 ms
52,752 KB
testcase_04 AC 33 ms
53,552 KB
testcase_05 AC 35 ms
53,656 KB
testcase_06 AC 35 ms
52,632 KB
testcase_07 AC 35 ms
52,280 KB
testcase_08 AC 35 ms
52,208 KB
testcase_09 AC 35 ms
52,280 KB
testcase_10 AC 39 ms
52,064 KB
testcase_11 AC 34 ms
51,876 KB
testcase_12 AC 33 ms
52,456 KB
testcase_13 AC 33 ms
53,960 KB
testcase_14 AC 33 ms
53,300 KB
testcase_15 AC 33 ms
52,272 KB
testcase_16 AC 34 ms
51,940 KB
testcase_17 AC 34 ms
52,236 KB
testcase_18 AC 33 ms
54,072 KB
testcase_19 AC 33 ms
52,824 KB
testcase_20 AC 33 ms
53,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97]
N = int(input())
product = 1
for i in range(len(primes)):
    product *= primes[i]
    if product > N:
        print(i)
        break
0