結果

問題 No.185 和風
ユーザー YamaKasaYamaKasa
提出日時 2018-04-27 02:11:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 214 ms / 1,000 ms
コード長 558 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 57,176 KB
最終ジャッジ日時 2024-06-27 21:32:47
合計ジャッジ時間 4,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
54,192 KB
testcase_01 AC 214 ms
56,748 KB
testcase_02 AC 211 ms
56,936 KB
testcase_03 AC 211 ms
56,764 KB
testcase_04 AC 214 ms
57,176 KB
testcase_05 AC 157 ms
53,828 KB
testcase_06 AC 199 ms
56,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []X = new int[N];
		int []Y = new int[N];
		for(int i = 0; i < N; i++) {
			X[i] = scan.nextInt();
			Y[i] = scan.nextInt();
		}
		scan.close();
		int z = Y[0] - X[0];
		if(z <= 0) {
			System.out.println(-1);
			System.exit(0);
		}
		for(int i = 1; i < N; i++) {
			int temp = Y[i] - X[i];
			if(z != temp) {
				System.out.println(-1);
				System.exit(0);
			}
		}
		System.out.println(z);
	}
}
0