結果

問題 No.185 和風
ユーザー rf141rf141
提出日時 2015-12-20 17:43:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 1,000 ms
コード長 531 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 43,812 KB
最終ジャッジ日時 2024-09-17 12:18:51
合計ジャッジ時間 4,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
41,936 KB
testcase_01 AC 202 ms
43,540 KB
testcase_02 AC 198 ms
43,396 KB
testcase_03 AC 211 ms
43,812 KB
testcase_04 AC 188 ms
43,492 KB
testcase_05 AC 155 ms
41,768 KB
testcase_06 AC 200 ms
43,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
public class Main{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		System.out.println(Calc(n,scan));
	}

	public static int Calc(int n,Scanner scan){
		int result = -1;
		for(int i = 0; i < n; i++){
			int x = scan.nextInt();
			int y = scan.nextInt();

			int fx = y-x;

			if(i == 0 && 0 < fx){
				result = fx;
			}else if(result != fx){
				result = -1;
			}else if(fx <= 0){
				result = -1;
			}
		}

		return result;
	}
}
0