結果
問題 | No.106 素数が嫌い!2 |
ユーザー | yukirin |
提出日時 | 2016-02-25 17:40:08 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 42 ms / 5,000 ms |
コード長 | 1,006 bytes |
コンパイル時間 | 11,210 ms |
コンパイル使用メモリ | 242,044 KB |
実行使用メモリ | 21,760 KB |
最終ジャッジ日時 | 2024-10-10 22:51:28 |
合計ジャッジ時間 | 12,152 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
11,776 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 16 ms
11,776 KB |
testcase_05 | AC | 42 ms
21,760 KB |
testcase_06 | AC | 39 ms
21,760 KB |
testcase_07 | AC | 41 ms
21,760 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 40 ms
21,760 KB |
testcase_11 | AC | 14 ms
10,496 KB |
testcase_12 | AC | 38 ms
20,992 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
ソースコード
package main import ( "bufio" "fmt" "math" "os" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var rdr = bufio.NewReaderSize(os.Stdin, 1000000) func main() { sc.Split(bufio.ScanWords) n, k := nextInt(), nextInt() ps, ns := eratosthenes(n), make([]int, n+1) for _, v := range ps { for i := v; i <= n; i += v { ns[i]++ } } t := 0 for _, v := range ns { if v >= k { t++ } } fmt.Println(t) } func nextLine() string { sc.Scan() return sc.Text() } func nextInt() int { i, _ := strconv.Atoi(nextLine()) return i } func eratosthenes(n int) []int { if n < 2 { return []int{} } r := int(math.Floor(math.Sqrt(float64(n)))) list := make([]bool, n+1) list[0], list[1] = true, true for i := 2; i <= r; i++ { if !list[i] { for j := i * i; j <= n; j += i { list[j] = true } } } l := n / int(math.Ceil(math.Log(float64(n)))) primes := make([]int, 0, l) for i, v := range list { if v { continue } primes = append(primes, i) } return primes }