結果

問題 No.2451 Redistribute Integers
ユーザー ID 21712ID 21712
提出日時 2024-11-14 09:18:30
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 299 bytes
コンパイル時間 15,811 ms
コンパイル使用メモリ 239,544 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 09:18:48
合計ジャッジ時間 16,045 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 0 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
6,820 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 WA -
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var a,b,n,s int64
	Fscan(rd,&n,&a)
	s+=a
	for ;n>1;n-- {
		Fscan(rd,&b)
		s+=b
		d:=b-a
		if d/n*n!=d{
			Println("No")
			return
		}
	}
	if s/n*n!=s {
		Println("No")
		return
	}
	Println("Yes")
}
0