結果

問題 No.2451 Redistribute Integers
ユーザー ID 21712ID 21712
提出日時 2024-11-14 09:13:05
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 12,350 ms
コンパイル使用メモリ 228,764 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 09:13:22
合計ジャッジ時間 14,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 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,820 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 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 1 ms
6,816 KB
testcase_18 WA -
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

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