結果

問題 No.2750 Number of Prime Factors
ユーザー ああいいああいい
提出日時 2024-05-23 17:58:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 67,280 KB
最終ジャッジ日時 2024-05-23 17:58:48
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
65,804 KB
testcase_01 AC 50 ms
66,352 KB
testcase_02 AC 44 ms
65,540 KB
testcase_03 AC 42 ms
66,936 KB
testcase_04 AC 43 ms
67,280 KB
testcase_05 AC 47 ms
66,104 KB
testcase_06 AC 50 ms
66,796 KB
testcase_07 AC 47 ms
66,180 KB
testcase_08 AC 40 ms
66,612 KB
testcase_09 AC 43 ms
66,344 KB
testcase_10 AC 42 ms
66,040 KB
testcase_11 AC 42 ms
65,548 KB
testcase_12 AC 42 ms
65,680 KB
testcase_13 AC 44 ms
67,032 KB
testcase_14 AC 44 ms
66,052 KB
testcase_15 AC 46 ms
66,164 KB
testcase_16 AC 46 ms
66,788 KB
testcase_17 AC 46 ms
66,076 KB
testcase_18 AC 45 ms
65,940 KB
testcase_19 AC 53 ms
66,304 KB
testcase_20 AC 48 ms
66,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = 1
dat = [0] * (10 ** 6)
count = 0
C = 10 ** 6
for i in range(2,N + 5):
	if dat[i] == 0:
		for j in range(i,C,i):
			dat[j] = 1
		if ans * i > N:
			print(count)
			break
		else:
			ans *= i
			count += 1
0