結果
問題 | No.106 素数が嫌い!2 |
ユーザー | yukirin |
提出日時 | 2016-02-25 16:30:45 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 763 bytes |
コンパイル時間 | 11,677 ms |
コンパイル使用メモリ | 238,568 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 22:49:21 |
合計ジャッジ時間 | 23,785 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2,046 ms
5,248 KB |
testcase_07 | AC | 2,041 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 54 ms
5,248 KB |
testcase_10 | AC | 2,043 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
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" "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() t := 0 for i := 2; i <= n; i += 2 { ns := factor(i, k) if ns >= k { t++ } } fmt.Println(t) } func nextLine() string { sc.Scan() return sc.Text() } func nextInt() int { i, _ := strconv.Atoi(nextLine()) return i } func factor(n, k int) int { if n <= 1 { return 1 } ps := make([]int, 0, 100) for i := int(2); i*i <= n; i++ { for n%i == 0 { n /= i if len(ps) == 0 || i > ps[len(ps)-1] { ps = append(ps, i) } if len(ps) >= k { return k } } } if n > 1 { ps = append(ps, n) } return len(ps) }