結果

問題 No.185 和風
ユーザー YatsukuYatsuku
提出日時 2015-12-16 17:25:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 205 ms / 1,000 ms
コード長 569 bytes
コンパイル時間 2,930 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 43,652 KB
最終ジャッジ日時 2024-09-16 05:43:20
合計ジャッジ時間 3,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
42,072 KB
testcase_01 AC 205 ms
43,652 KB
testcase_02 AC 132 ms
41,800 KB
testcase_03 AC 137 ms
41,456 KB
testcase_04 AC 135 ms
41,628 KB
testcase_05 AC 133 ms
41,768 KB
testcase_06 AC 201 ms
43,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_185 {
	public static void main(String args[]) {
		Scanner stdIn = new Scanner(System.in);		
		int num = stdIn.nextInt();
		int [] unknown = new int [num];

		for (int i = 0; i < num; i++) {
			int x1 = stdIn.nextInt();
			int x2 = stdIn.nextInt();
			if ( x1 < x2 ) {
				unknown[i] = x2 - x1;
			} else {
				System.out.println(-1);
				System.exit(0);
			}
		}

		for (int i = 0; i < num-1; i++) {
			if (unknown[i] != unknown[i+1]) {
				System.out.println(-1);
				System.exit(0);
			}
		}
		System.out.println(unknown[0]);
	}
}
0