結果

問題 No.185 和風
ユーザー r.suzukir.suzuki
提出日時 2015-12-28 21:31:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 44,008 KB
最終ジャッジ日時 2024-09-19 07:59:00
合計ジャッジ時間 4,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
42,124 KB
testcase_01 AC 192 ms
44,008 KB
testcase_02 AC 126 ms
41,300 KB
testcase_03 AC 130 ms
41,416 KB
testcase_04 AC 191 ms
43,240 KB
testcase_05 WA -
testcase_06 AC 195 ms
43,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_185 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int n = sc.nextInt();
		int x = sc.nextInt();
		int y = sc.nextInt();
		int ans = y - x;

		for (int i = 1; i < n; i++) {
			x = sc.nextInt();
			y = sc.nextInt();
			if (ans != y - x) {
				ans = -1;
				break;
			}
		}

		if (ans >= 0) {
			System.out.println(ans);
		} else {
			System.out.println(-1);
		}
		sc.close();

	}

}
0