結果

問題 No.185 和風
ユーザー FVRChanFVRChan
提出日時 2017-10-03 09:15:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 56,872 KB
最終ジャッジ日時 2024-11-16 05:24:53
合計ジャッジ時間 4,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
54,116 KB
testcase_01 AC 211 ms
56,816 KB
testcase_02 AC 207 ms
56,708 KB
testcase_03 AC 214 ms
56,648 KB
testcase_04 AC 213 ms
56,872 KB
testcase_05 WA -
testcase_06 AC 207 ms
56,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int n=sc.nextInt(),are[]=new int[n];
		for(int i=0;i<n;i++){
			are[i]=-(sc.nextInt()-sc.nextInt());
		}Arrays.sort(are);
		int min=are[0];
		if(min<0)System.out.println(-1);
		else{
			for(int i=0;i<are.length;i++){
				if(min != are[i]){
					System.out.println(-1);
					return;
				}
			}System.out.println(min);
		}
	}
}
0