結果

問題 No.185 和風
ユーザー k_kadorak_kadora
提出日時 2015-05-30 19:12:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 3,464 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 56,340 KB
最終ジャッジ日時 2024-07-06 12:46:27
合計ジャッジ時間 4,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
54,128 KB
testcase_01 AC 177 ms
56,320 KB
testcase_02 AC 198 ms
56,340 KB
testcase_03 AC 182 ms
56,232 KB
testcase_04 AC 182 ms
56,296 KB
testcase_05 WA -
testcase_06 AC 181 ms
56,196 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