結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
66,772 KB
testcase_01 AC 53 ms
66,064 KB
testcase_02 AC 50 ms
66,448 KB
testcase_03 AC 48 ms
66,164 KB
testcase_04 AC 48 ms
66,184 KB
testcase_05 AC 53 ms
67,104 KB
testcase_06 AC 53 ms
66,056 KB
testcase_07 AC 52 ms
66,860 KB
testcase_08 WA -
testcase_09 AC 47 ms
66,108 KB
testcase_10 AC 46 ms
65,928 KB
testcase_11 AC 48 ms
65,548 KB
testcase_12 AC 48 ms
66,676 KB
testcase_13 AC 49 ms
66,420 KB
testcase_14 AC 48 ms
65,880 KB
testcase_15 AC 51 ms
66,284 KB
testcase_16 AC 50 ms
66,752 KB
testcase_17 AC 52 ms
66,800 KB
testcase_18 AC 51 ms
65,424 KB
testcase_19 AC 52 ms
66,596 KB
testcase_20 AC 52 ms
66,072 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