結果

問題 No.185 和風
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 18:13:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 192 ms / 1,000 ms
コード長 531 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 56,632 KB
最終ジャッジ日時 2024-10-07 20:02:00
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
54,624 KB
testcase_01 AC 187 ms
56,328 KB
testcase_02 AC 190 ms
56,632 KB
testcase_03 AC 192 ms
56,604 KB
testcase_04 AC 188 ms
56,408 KB
testcase_05 AC 140 ms
54,196 KB
testcase_06 AC 189 ms
56,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			ar[i] = b - a;
		}
		
		boolean exist = true;
		for (int i=0; i<n-1; i++) {
			if (ar[i]!=ar[i+1]) {exist = false;}
		}
		
		if (exist==false) {
			System.out.println(-1);
		}
		else {
			if (ar[0]<=0) {System.out.println(-1);}
			else {System.out.println(ar[0]);}
		}
	}
}
0