結果

問題 No.185 和風
ユーザー kou6839kou6839
提出日時 2015-04-22 12:02:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 1,000 ms
コード長 568 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 74,076 KB
実行使用メモリ 43,856 KB
最終ジャッジ日時 2024-07-05 00:09:51
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
42,496 KB
testcase_01 AC 193 ms
43,364 KB
testcase_02 AC 121 ms
41,332 KB
testcase_03 AC 125 ms
41,496 KB
testcase_04 AC 121 ms
41,424 KB
testcase_05 AC 126 ms
41,428 KB
testcase_06 AC 186 ms
43,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	static int[] tatesum,yokosum;
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int ans=0;
		for(int i=0;i<n;i++){
			int x = sc.nextInt();
			int y = sc.nextInt();
			if(y-x>0){
				if(ans==0){
					ans=y-x;
				}else{
					if(ans==y-x){
						
					}else{
						System.out.println(-1);
						return;
					}
				}
			}else{
				System.out.println(-1);
				return;
			}
		}
		System.out.println(ans);
	}
}
0