結果

問題 No.185 和風
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 01:22:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 1,000 ms
コード長 339 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 43,412 KB
最終ジャッジ日時 2024-06-30 17:49:46
合計ジャッジ時間 3,562 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
41,708 KB
testcase_01 AC 178 ms
43,008 KB
testcase_02 AC 119 ms
40,784 KB
testcase_03 AC 117 ms
40,980 KB
testcase_04 AC 117 ms
41,132 KB
testcase_05 AC 112 ms
40,928 KB
testcase_06 AC 177 ms
43,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no185{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,x,y,i,t=0;
		n=stdIn.nextInt();
		for(i=0;i<n;i++) {
			x=stdIn.nextInt();
			y=stdIn.nextInt();
			if(i>0&&t!=y-x||x>=y) {
				t=-1;
				break;
			}
			t=y-x;
		}
		System.out.print(t);
	}
}
0