結果

問題 No.185 和風
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-24 19:49:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 75,216 KB
実行使用メモリ 56,848 KB
最終ジャッジ日時 2024-09-21 16:10:11
合計ジャッジ時間 3,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 184 ms
43,404 KB
testcase_02 AC 183 ms
43,676 KB
testcase_03 AC 176 ms
43,408 KB
testcase_04 AC 185 ms
43,380 KB
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		
		int[] X = new int[N], Y = new int[N];
		
		for(int i = 0; i < N; i++) {
			X[i] = sc.nextInt();
			Y[i] = sc.nextInt();
		}
		
		int[] Z = new int[N];
		
		for(int i = 0; i < N; i++) {
			Z[i] = Y[i] - X[i];
		}
		
		int cnt = 0;
		
		for(int i = 0; i < N; i++) {
			if(Z[0] == Z[i] && Z[i] >= 0) {
				cnt++;
			}
		}
		
		if(cnt == N) {
			System.out.println(cnt);
		} else {
			System.out.println(-1);
		}
	}
}
0