結果
問題 | No.185 和風 |
ユーザー | tsuchinaga |
提出日時 | 2019-02-20 22:56:25 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 313 bytes |
コンパイル時間 | 11,580 ms |
コンパイル使用メモリ | 220,212 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-07 21:47:06 |
合計ジャッジ時間 | 12,521 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
5,248 KB |
testcase_01 | AC | 16 ms
5,248 KB |
testcase_02 | AC | 15 ms
5,248 KB |
testcase_03 | AC | 16 ms
5,248 KB |
testcase_04 | AC | 16 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 13 ms
5,248 KB |
ソースコード
package main import "fmt" func main() { var n, x, y, m int r := true _, _ = fmt.Scan(&n) _, _ = fmt.Scan(&x, &y) m = y - x if y-x < 0 { r = false } for i := 1; i < n; i++ { _, _ = fmt.Scan(&x, &y) if r && m != y-x { r = false } } if r { fmt.Println(m) } else { fmt.Println(-1) } }