結果

問題 No.2750 Number of Prime Factors
ユーザー splash9494splash9494
提出日時 2024-05-13 00:02:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-05-13 00:03:00
合計ジャッジ時間 2,307 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,580 KB
testcase_01 AC 40 ms
52,836 KB
testcase_02 AC 39 ms
53,420 KB
testcase_03 AC 38 ms
52,124 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,444 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,076 KB
testcase_10 WA -
testcase_11 AC 38 ms
53,548 KB
testcase_12 WA -
testcase_13 AC 38 ms
51,752 KB
testcase_14 WA -
testcase_15 AC 38 ms
52,616 KB
testcase_16 WA -
testcase_17 AC 38 ms
53,012 KB
testcase_18 WA -
testcase_19 AC 43 ms
52,560 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

n = p = 2
ps = []

while n < N:
    if any((p % i) == 0 for i in range(2, p+1) if i != p):
        p += 1
        continue
    else:
        ps.append(p)
        n *= p
        p += 1

print(len(ps))
0