結果

問題 No.2750 Number of Prime Factors
ユーザー cologne
提出日時 2025-05-23 16:10:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 130 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 53,964 KB
最終ジャッジ日時 2025-05-23 16:10:12
合計ジャッジ時間 2,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
k = 1
c = 0
for i in [2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53]:
	k *= i
	c += 1
	if n < k:
		print(c)
		break
0