結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
67,276 KB
testcase_01 AC 47 ms
65,876 KB
testcase_02 AC 47 ms
66,224 KB
testcase_03 AC 45 ms
66,400 KB
testcase_04 AC 45 ms
66,840 KB
testcase_05 AC 48 ms
67,152 KB
testcase_06 AC 50 ms
66,516 KB
testcase_07 AC 49 ms
66,944 KB
testcase_08 WA -
testcase_09 AC 48 ms
65,764 KB
testcase_10 AC 43 ms
65,572 KB
testcase_11 AC 45 ms
65,552 KB
testcase_12 AC 44 ms
66,784 KB
testcase_13 AC 46 ms
67,496 KB
testcase_14 AC 45 ms
66,464 KB
testcase_15 AC 48 ms
65,300 KB
testcase_16 AC 46 ms
65,976 KB
testcase_17 AC 49 ms
66,008 KB
testcase_18 AC 46 ms
66,540 KB
testcase_19 AC 47 ms
66,104 KB
testcase_20 AC 50 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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