結果

問題 No.2750 Number of Prime Factors
ユーザー ID 21712ID 21712
提出日時 2024-11-07 21:12:00
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 15,105 ms
コンパイル使用メモリ 234,100 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-11-07 21:12:16
合計ジャッジ時間 14,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,392 KB
testcase_01 WA -
testcase_02 AC 12 ms
11,392 KB
testcase_03 AC 12 ms
11,520 KB
testcase_04 AC 12 ms
11,520 KB
testcase_05 AC 19 ms
11,520 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 10 ms
11,392 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 13 ms
11,392 KB
testcase_12 AC 10 ms
11,392 KB
testcase_13 AC 15 ms
11,520 KB
testcase_14 AC 14 ms
11,392 KB
testcase_15 AC 16 ms
11,392 KB
testcase_16 AC 15 ms
11,392 KB
testcase_17 AC 17 ms
11,392 KB
testcase_18 AC 16 ms
11,392 KB
testcase_19 AC 19 ms
11,520 KB
testcase_20 AC 18 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

var b [10000000]bool

func main() {
	var n int64
	Scan(&n)
	c:=1
	x:=int64(2)
	for p:=int64(3);p*x<=n;p+=2 {
		if b[int(p)] {
			continue
		}
		c++
		x*=p
		for e:=p+p;int(e)<len(b);e+=p {
			b[int(e)]=true
		}
	}
	Println(c)
	
}
0