結果

問題 No.185 和風
ユーザー marumaru
提出日時 2016-03-22 21:51:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 180 ms / 1,000 ms
コード長 561 bytes
コンパイル時間 3,837 ms
コンパイル使用メモリ 74,012 KB
実行使用メモリ 43,728 KB
最終ジャッジ日時 2024-10-01 13:10:35
合計ジャッジ時間 5,424 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,748 KB
testcase_01 AC 180 ms
43,588 KB
testcase_02 AC 175 ms
43,264 KB
testcase_03 AC 172 ms
42,992 KB
testcase_04 AC 170 ms
42,956 KB
testcase_05 AC 134 ms
41,860 KB
testcase_06 AC 179 ms
43,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_185 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int n = stdIn.nextInt();
		
		int[] x = new int[n];
		int[] y = new int[n];
			
		for (int i = 0; i < n; i++) {
			x[i] = stdIn.nextInt();
			y[i] = stdIn.nextInt();
		}
		
		int answer = -1;
		int diff = y[0] - x[0];
		
		if (diff >= 1) {
			for (int i = 1; i < n; i++) {
				if (x[i] + diff == y[i]) {
					answer = diff;
				} else {
					answer = -1;
					break;
				}
			}
		}
		System.out.println(answer);
	}
}
0