結果

問題 No.2750 Number of Prime Factors
ユーザー ああいいああいい
提出日時 2024-05-23 17:53:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-12-20 18:55:59
合計ジャッジ時間 2,131 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
65,408 KB
testcase_01 AC 57 ms
65,152 KB
testcase_02 AC 54 ms
65,664 KB
testcase_03 AC 54 ms
65,280 KB
testcase_04 AC 61 ms
65,664 KB
testcase_05 AC 58 ms
65,608 KB
testcase_06 AC 58 ms
65,664 KB
testcase_07 AC 58 ms
65,280 KB
testcase_08 WA -
testcase_09 AC 52 ms
65,408 KB
testcase_10 AC 53 ms
65,664 KB
testcase_11 AC 55 ms
65,280 KB
testcase_12 AC 56 ms
65,152 KB
testcase_13 AC 54 ms
65,408 KB
testcase_14 AC 55 ms
65,664 KB
testcase_15 AC 57 ms
65,408 KB
testcase_16 AC 57 ms
65,536 KB
testcase_17 AC 57 ms
65,792 KB
testcase_18 AC 55 ms
65,408 KB
testcase_19 AC 58 ms
65,152 KB
testcase_20 AC 56 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = 1
dat = [0] * (10 ** 6)
count = 0
C = 10 ** 6
for i in range(2,N):
	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