結果

問題 No.185 和風
ユーザー kenkooookenkoooo
提出日時 2015-04-19 23:29:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 1,000 ms
コード長 457 bytes
コンパイル時間 2,913 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 43,640 KB
最終ジャッジ日時 2024-07-04 18:23:56
合計ジャッジ時間 3,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
42,052 KB
testcase_01 AC 193 ms
43,640 KB
testcase_02 AC 113 ms
40,300 KB
testcase_03 AC 126 ms
41,504 KB
testcase_04 AC 123 ms
41,180 KB
testcase_05 AC 124 ms
41,420 KB
testcase_06 AC 185 ms
43,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int candidate = 0;
		for (int i = 0; i < N; i++) {
			int x = sc.nextInt();
			int y = sc.nextInt();
			if (i == 0) {
				candidate = y - x;
			}
			if (candidate <= 0 || candidate != y - x) {
				System.out.println(-1);
				return;
			}
		}
		System.out.println(candidate);

	}

}
0