結果
問題 | No.2451 Redistribute Integers |
ユーザー | ID 21712 |
提出日時 | 2024-11-14 10:06:00 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 268 ms / 2,000 ms |
コード長 | 244 bytes |
コンパイル時間 | 15,874 ms |
コンパイル使用メモリ | 222,440 KB |
実行使用メモリ | 7,840 KB |
最終ジャッジ日時 | 2024-11-14 10:06:19 |
合計ジャッジ時間 | 16,989 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
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 m:=n ;m>1;m-- { Fscan(rd,&b) d:=b-a if d/n*n!=d{ Println("No") return } } Println("Yes") }