結果

問題 No.2750 Number of Prime Factors
ユーザー splash9494splash9494
提出日時 2024-05-14 23:58:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-05-14 23:58:55
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,584 KB
testcase_01 WA -
testcase_02 AC 46 ms
52,204 KB
testcase_03 AC 45 ms
52,820 KB
testcase_04 AC 45 ms
52,416 KB
testcase_05 AC 47 ms
53,012 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 55 ms
52,828 KB
testcase_09 AC 39 ms
52,368 KB
testcase_10 AC 39 ms
52,436 KB
testcase_11 AC 39 ms
53,348 KB
testcase_12 AC 39 ms
52,696 KB
testcase_13 AC 39 ms
51,944 KB
testcase_14 AC 38 ms
52,308 KB
testcase_15 AC 38 ms
52,760 KB
testcase_16 AC 39 ms
52,752 KB
testcase_17 AC 38 ms
53,164 KB
testcase_18 AC 38 ms
52,092 KB
testcase_19 AC 38 ms
52,956 KB
testcase_20 AC 39 ms
52,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47]
x = 1
for i, p in enumerate(primes):
    x *= p
    if x > N:
        break
print(i)
0