結果

問題 No.185 和風
ユーザー k_kadorak_kadora
提出日時 2015-06-10 00:06:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 1,000 ms
コード長 485 bytes
コンパイル時間 3,474 ms
コンパイル使用メモリ 75,852 KB
実行使用メモリ 43,520 KB
最終ジャッジ日時 2024-07-06 15:16:52
合計ジャッジ時間 5,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,900 KB
testcase_01 AC 163 ms
43,032 KB
testcase_02 AC 167 ms
43,440 KB
testcase_03 AC 163 ms
43,328 KB
testcase_04 AC 161 ms
43,520 KB
testcase_05 AC 117 ms
41,408 KB
testcase_06 AC 161 ms
42,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Wafu {
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,temp=0,res=0;
		n = sc.nextInt();
		int[] x = new int[n];
		int[] y = new int[n];
		for(int i = 0;i<n;i++){
			x[i] = sc.nextInt();
			y[i] = sc.nextInt();
		}
		for(int i = 0;i<n;i++){
			if(i ==0){
				temp = y[i] - x[i];
				res = temp;
			}
			if(y[i] - x[i]<= 0 || y[i] - x[i] != temp) {
				res = -1;
				break;
			}
		}
		System.out.println(res);
	}
}
0