結果

問題 No.185 和風
ユーザー 37zigen37zigen
提出日時 2016-03-31 13:22:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 208 ms / 1,000 ms
コード長 470 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 54,576 KB
最終ジャッジ日時 2024-10-02 08:24:22
合計ジャッジ時間 3,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 180 ms
53,992 KB
testcase_01 AC 208 ms
54,576 KB
testcase_02 AC 130 ms
54,144 KB
testcase_03 AC 130 ms
53,952 KB
testcase_04 AC 133 ms
41,412 KB
testcase_05 AC 131 ms
41,364 KB
testcase_06 AC 188 ms
43,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder185;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int res=-1;
		for(int i=0;i<n;i++){
			int x=sc.nextInt();
			int y=sc.nextInt();
			if(i==0){
				if(y-x>0){
					res=y-x;
				}else{
					System.out.println(-1);
					return;
				}
			}else{
				if(y-x!=res){
					System.out.println(-1);
					return;
				}
			}
		}
		System.out.println(res);
	}
}
0