結果

問題 No.12 限定された素数
ユーザー warashiwarashi
提出日時 2015-10-30 14:12:44
言語 Go
(1.22.1)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 1,641 bytes
コンパイル時間 10,106 ms
コンパイル使用メモリ 237,624 KB
実行使用メモリ 28,384 KB
最終ジャッジ日時 2024-05-03 09:35:10
合計ジャッジ時間 12,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
28,256 KB
testcase_01 AC 37 ms
9,824 KB
testcase_02 AC 39 ms
28,252 KB
testcase_03 AC 27 ms
9,872 KB
testcase_04 AC 39 ms
28,252 KB
testcase_05 AC 38 ms
9,820 KB
testcase_06 AC 53 ms
28,260 KB
testcase_07 AC 61 ms
9,872 KB
testcase_08 AC 40 ms
28,252 KB
testcase_09 AC 38 ms
28,256 KB
testcase_10 AC 40 ms
28,252 KB
testcase_11 AC 110 ms
28,384 KB
testcase_12 AC 59 ms
9,820 KB
testcase_13 AC 47 ms
28,256 KB
testcase_14 AC 40 ms
28,260 KB
testcase_15 AC 44 ms
9,824 KB
testcase_16 AC 58 ms
9,820 KB
testcase_17 AC 38 ms
28,256 KB
testcase_18 AC 38 ms
28,256 KB
testcase_19 AC 35 ms
9,872 KB
testcase_20 AC 39 ms
28,252 KB
testcase_21 AC 39 ms
28,252 KB
testcase_22 AC 39 ms
28,256 KB
testcase_23 AC 38 ms
28,252 KB
testcase_24 AC 38 ms
28,252 KB
testcase_25 AC 40 ms
28,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

var PRIME = SieveOfEratosthenes(5000000)
var A = make([]bool, 10)

func SieveOfEratosthenes(max int) []int {
	isNotPrime := make([]bool, max+1)
	isNotPrime[0] = true
	isNotPrime[1] = true
	for i := 2; i <= int(math.Sqrt(float64(max))); i++ {
		if isNotPrime[i] {
			continue
		}
		for j := i * i; j <= max; j += i {
			isNotPrime[j] = true
		}
	}
	prime := make([]int, 0, max/2)
	for i, b := range isNotPrime {
		if !b {
			prime = append(prime, i)
		}
	}
	return prime
}

func addNum(count []int, n int) {
	for n > 0 {
		count[n%10]++
		n /= 10
	}
}
func ok(A []bool, n int) bool {
	count := make([]int, 10)
	addNum(count, n)
	for i := 0; i < 10; i++ {
		if !A[i] && count[i] > 0 {
			return false
		}
	}
	return true
}
func AllOK(A []bool, count []int) bool {
	for i := 0; i < 10; i++ {
		if !A[i] && count[i] > 0 {
			return false
		}
		if A[i] && count[i] == 0 {
			return false
		}
	}
	return true
}

func main() {
	var N, tmp int
	ans := -1
	fmt.Scan(&N)
	if N == 10 {
		fmt.Println(4999999)
		return
	}
	for i := 0; i < N; i++ {
		fmt.Scan(&tmp)
		A[tmp] = true
	}

	for i := 0; i < len(PRIME); i++ {
		if !ok(A, PRIME[i]) {
			continue
		}
		var min, max int
		if i == 0 {
			min = 1
		} else {
			min = PRIME[i-1] + 1
		}
		var j int
		for j = i; j < len(PRIME); j++ {
			if !ok(A, PRIME[j]) {
				break
			}
			if j+1 >= len(PRIME) {
				max = 5000000
			} else {
				max = PRIME[j+1] - 1
			}
		}
		count := make([]int, 10)
		for k := i; k < j; k++ {
			addNum(count, PRIME[k])
		}
		if !AllOK(A, count) {
			continue
		}
		if ans < max-min {
			ans = max - min
		}
	}
	fmt.Println(ans)
}
0