結果

問題 No.185 和風
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 17:55:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 57,008 KB
最終ジャッジ日時 2024-07-07 17:28:58
合計ジャッジ時間 3,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
53,988 KB
testcase_01 AC 172 ms
57,008 KB
testcase_02 AC 171 ms
56,404 KB
testcase_03 AC 178 ms
56,828 KB
testcase_04 AC 178 ms
56,664 KB
testcase_05 WA -
testcase_06 AC 171 ms
56,612 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;
			else continue;
		}
		
		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