結果
問題 | No.185 和風 |
ユーザー |
![]() |
提出日時 | 2016-11-17 04:10:04 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 2,709 ms |
コンパイル使用メモリ | 74,384 KB |
実行使用メモリ | 43,864 KB |
最終ジャッジ日時 | 2024-11-26 02:43:22 |
合計ジャッジ時間 | 4,087 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 RE * 2 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int xFirst = sc.nextInt(); int yFirst = sc.nextInt(); int answer = yFirst - xFirst; for (int i = 0; i < n; i++) { int x = sc.nextInt(); int y = sc.nextInt(); if (answer <= 0 || answer != y - x) { System.out.println(-1); return; } } System.out.println(answer); } }