結果

問題 No.185 和風
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 17:59:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 174 ms / 1,000 ms
コード長 619 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 78,600 KB
実行使用メモリ 43,916 KB
最終ジャッジ日時 2024-07-07 17:29:11
合計ジャッジ時間 3,576 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,332 KB
testcase_01 AC 172 ms
43,108 KB
testcase_02 AC 172 ms
43,460 KB
testcase_03 AC 172 ms
43,380 KB
testcase_04 AC 173 ms
43,748 KB
testcase_05 AC 122 ms
41,448 KB
testcase_06 AC 174 ms
43,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Scanner;
import java.util.TreeSet;

public class Main {
	static int N;
	static int[] X,Y;
	
	public static int solve(){
		int answer = Y[0] - X[0];
		
		if (answer <= 0) return -1;
		
		for (int i = 1; i < N; i++) {
			if (Y[i] - X[i] != answer) return -1;
		}
		
		return answer;
	}
	
	public static void main(String[] args){
		Scanner S = new Scanner(System.in);
		
		N = S.nextInt();
		
		X = new int[N];
		Y = new int[N];

		for (int i = 0; i < N; i++) {
			X[i] = S.nextInt();
			Y[i] = S.nextInt();
		}
		
		System.out.println(solve());
	}
}
0