結果

問題 No.1884 Sequence
ユーザー HimaHima
提出日時 2022-05-05 10:20:32
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 1,682 bytes
コンパイル時間 13,609 ms
コンパイル使用メモリ 230,124 KB
実行使用メモリ 11,736 KB
最終ジャッジ日時 2024-07-04 11:52:03
合計ジャッジ時間 17,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,948 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 66 ms
11,728 KB
testcase_11 AC 64 ms
11,728 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 8 ms
6,944 KB
testcase_15 AC 34 ms
9,676 KB
testcase_16 AC 52 ms
11,728 KB
testcase_17 AC 17 ms
7,504 KB
testcase_18 AC 25 ms
9,672 KB
testcase_19 AC 20 ms
7,500 KB
testcase_20 AC 26 ms
7,504 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 49 ms
11,732 KB
testcase_24 AC 51 ms
11,736 KB
testcase_25 AC 45 ms
11,728 KB
testcase_26 AC 50 ms
11,728 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 9 ms
6,940 KB
testcase_29 AC 8 ms
6,940 KB
testcase_30 AC 9 ms
6,940 KB
testcase_31 AC 24 ms
7,500 KB
testcase_32 AC 45 ms
11,728 KB
testcase_33 AC 29 ms
11,732 KB
testcase_34 AC 30 ms
11,728 KB
testcase_35 AC 10 ms
6,940 KB
testcase_36 AC 24 ms
9,672 KB
testcase_37 AC 30 ms
11,728 KB
testcase_38 AC 27 ms
11,728 KB
testcase_39 AC 14 ms
7,504 KB
testcase_40 AC 15 ms
7,500 KB
testcase_41 AC 42 ms
9,676 KB
testcase_42 AC 43 ms
9,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"sort"
	"strconv"
)

var sc = bufio.NewScanner(os.Stdin)

func Solve(n int, a []int) string {
	//d := make(map[int]struct{})
	sort.Ints(a)
	var ds []int
	for i := 1; i < n; i++ {
		//d[a[i]-a[i-1]] = struct{}{}
		if a[i] > 0 && a[i-1] > 0 {
			ds = append(ds, a[i]-a[i-1])
		}
	}
	if len(ds) == 0 {
		return "Yes"
	}
	//var ds []int
	//for k := range d {
	//	ds = append(ds, k)
	//}
	sort.Ints(ds)
	for i := 1; i < len(ds); i++ {
		if ds[0] == 0 {
			if ds[i] > 0 {
				return "No"
			}
		} else {
			if ds[0] != ds[i] && Gcd(ds[0], ds[i]) == 1 {
				return "No"
			}
		}
	}

	var nz int
	for _, v := range a {
		if v == 0 {
			nz++
		}
	}
	var need int
	for i := 1; i < len(ds); i++ {
		if ds[0] > 0 {
			need += ds[i]/ds[0] - 1
		}
	}
	if nz >= need {
		return "Yes"
	} else {
		return "No"
	}
}

func main() {
	buf := make([]byte, 1024*1024)
	sc.Buffer(buf, bufio.MaxScanTokenSize)
	sc.Split(bufio.ScanWords)

	n := nextInt()
	a := nextIntSlice(n)
	ans := Solve(n, a)
	fmt.Println(ans)
}

func nextInt() int {
	sc.Scan()
	i, _ := strconv.Atoi(sc.Text())
	return i
}

func nextIntSlice(n int) []int {
	s := make([]int, n)
	for i := range s {
		s[i] = nextInt()
	}
	return s
}

func Min(x, y int) int {
	if x < y {
		return x
	}
	return y
}

func Max(x, y int) int {
	if x < y {
		return y
	}
	return x
}

func Gcd(x, y int) int {
	if x == 0 {
		return y
	}
	if y == 0 {
		return x
	}
	/*
		if x < y {
			x, y = y, x
		}
	*/
	return Gcd(y, x%y)
}

func Lcm(x, y int) int {
	// x*yのオーバーフロー対策のため先にGcdで割る
	// Gcd(x, y)はxの約数のため割り切れる
	ret := x / Gcd(x, y)
	ret *= y
	return ret
}
0