結果

問題 No.185 和風
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:19:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 204 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 3,836 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 43,208 KB
最終ジャッジ日時 2024-11-15 22:45:07
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
42,048 KB
testcase_01 AC 204 ms
43,176 KB
testcase_02 AC 132 ms
41,384 KB
testcase_03 AC 134 ms
41,296 KB
testcase_04 AC 133 ms
41,228 KB
testcase_05 AC 133 ms
40,956 KB
testcase_06 AC 204 ms
43,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt(), a = sc.nextInt(), b = sc.nextInt(), d = b - a;
		if(d <= 0){
			System.out.println(-1);
			return;
		}
		for(int i = 1; i < n; i++){
			a = sc.nextInt();
			b = sc.nextInt();
			if(d != b-a){
				System.out.println(-1);
				return;
			}
		}
		System.out.println(d);
	}
}
0