結果

問題 No.185 和風
ユーザー YamaKasaYamaKasa
提出日時 2018-04-27 02:10:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 56,932 KB
最終ジャッジ日時 2024-06-27 21:32:43
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
54,044 KB
testcase_01 AC 210 ms
56,764 KB
testcase_02 AC 209 ms
56,932 KB
testcase_03 AC 209 ms
43,440 KB
testcase_04 AC 211 ms
43,416 KB
testcase_05 WA -
testcase_06 AC 198 ms
43,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []X = new int[N];
		int []Y = new int[N];
		for(int i = 0; i < N; i++) {
			X[i] = scan.nextInt();
			Y[i] = scan.nextInt();
		}
		scan.close();
		int z = Y[0] - X[0];
		if(z < 0) {
			System.out.println(-1);
			System.exit(0);
		}
		for(int i = 1; i < N; i++) {
			int temp = Y[i] - X[i];
			if(z != temp) {
				System.out.println(-1);
				System.exit(0);
			}
		}
		System.out.println(z);
	}
}
0