結果

問題 No.185 和風
ユーザー ffmm00ffmm00
提出日時 2015-06-03 19:13:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 1,000 ms
コード長 542 bytes
コンパイル時間 4,589 ms
コンパイル使用メモリ 75,168 KB
実行使用メモリ 56,708 KB
最終ジャッジ日時 2024-07-06 13:57:23
合計ジャッジ時間 6,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
54,292 KB
testcase_01 AC 207 ms
56,708 KB
testcase_02 AC 137 ms
54,072 KB
testcase_03 AC 137 ms
54,192 KB
testcase_04 AC 136 ms
54,188 KB
testcase_05 AC 134 ms
54,192 KB
testcase_06 AC 204 ms
56,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class N185 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);
		int N = sca.nextInt();
		int[] A = new int[N];

		for (int i = 0; i < N; i++) {
			int X = sca.nextInt();
			int Y = sca.nextInt();
			A[i] = Y - X;
			if (A[i] <= 0) {
				System.out.println(-1);
				return;
			}
		}

		Arrays.sort(A);

		for (int i = 0; i < N - 1; i++) {
			if (A[i] != A[i + 1]) {
				System.out.println(-1);
				return;
			}
		}

		System.out.println(A[0]);
	}

}
0