結果

問題 No.185 和風
ユーザー YOSHIYOSHI
提出日時 2021-03-03 21:38:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 83 ms / 1,000 ms
コード長 779 bytes
コンパイル時間 3,977 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 38,528 KB
最終ジャッジ日時 2024-10-03 11:40:46
合計ジャッジ時間 5,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
37,080 KB
testcase_01 AC 83 ms
38,232 KB
testcase_02 AC 52 ms
37,076 KB
testcase_03 AC 53 ms
37,000 KB
testcase_04 AC 52 ms
36,576 KB
testcase_05 AC 52 ms
37,028 KB
testcase_06 AC 80 ms
38,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000185_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int n = Integer.parseInt(br.readLine());

		String[] strArr = br.readLine().split(" ");
		int x = Integer.parseInt(strArr[0]);
		int y  = Integer.parseInt(strArr[1]);
		int ans = y - x;
		if(ans <= 0) {
			System.out.println(-1);
			return;
		}

		n--;
		boolean flg = true;
		while(n > 0) {
			strArr = br.readLine().split(" ");
			x = Integer.parseInt(strArr[0]);
			y  = Integer.parseInt(strArr[1]);
			if(ans != y - x) {
				flg = false;
				break;
			}
			n--;
		}
		System.out.println(flg ? ans : -1);
	}
}
0