結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー fmhrfmhr
提出日時 2016-08-05 23:18:16
言語 Go
(1.22.1)
結果
AC  
実行時間 86 ms / 1,000 ms
コード長 611 bytes
コンパイル時間 13,668 ms
コンパイル使用メモリ 233,108 KB
実行使用メモリ 31,872 KB
最終ジャッジ日時 2024-12-15 22:12:20
合計ジャッジ時間 13,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 7 ms
5,888 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 82 ms
31,360 KB
testcase_06 AC 39 ms
17,280 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 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
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 6 ms
5,888 KB
testcase_20 AC 22 ms
9,600 KB
testcase_21 AC 9 ms
5,632 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 13 ms
7,808 KB
testcase_24 AC 22 ms
9,600 KB
testcase_25 AC 38 ms
17,024 KB
testcase_26 AC 37 ms
17,024 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 15 ms
8,320 KB
testcase_29 AC 36 ms
16,896 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 30 ms
13,952 KB
testcase_32 AC 36 ms
17,024 KB
testcase_33 AC 84 ms
31,872 KB
testcase_34 AC 86 ms
31,872 KB
testcase_35 AC 73 ms
30,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func main() {
	var N, L int
	fmt.Scan(&N, &L)
	prime := Sieve(L)
	sort.Ints(prime)
	ans := 0
	for _, p := range prime {
		if (N-1)*p <= L {
			//fmt.Println(p, L - (N - 1) * p + 1)
			ans += L - (N - 1) * p + 1
		}
	}
	fmt.Println(ans)
}

func Sieve(n int) []int {
	isNotPrime := make([]bool, n+1)
	primeList := make([]int, 0)
	isNotPrime[0] = true
	isNotPrime[1] = true
	for i := 2; i <= n; i++ {
		if !isNotPrime[i] {
			// 素数の場合
			primeList = append(primeList, i)
			for j := 2 * i; j <= n; j += i {
				isNotPrime[j] = true
			}
		}
	}
	return primeList
}
0