結果
問題 | No.185 和風 |
ユーザー | ohagi_1182 |
提出日時 | 2017-10-15 17:23:15 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 569 bytes |
コンパイル時間 | 3,346 ms |
コンパイル使用メモリ | 74,596 KB |
実行使用メモリ | 57,252 KB |
最終ジャッジ日時 | 2024-11-17 17:52:53 |
合計ジャッジ時間 | 4,202 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 195 ms
54,296 KB |
testcase_01 | WA | - |
testcase_02 | AC | 202 ms
56,664 KB |
testcase_03 | AC | 207 ms
56,212 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 213 ms
56,452 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] x = new int[n]; int[] y = new int[n]; for(int i = 0 ; i < n ; i++) { x[i] =sc.nextInt(); y[i] = sc.nextInt(); } long[] a = new long[n]; for(int i = 0 ; i < n ; i++) { a[i] = y[i] - x[i]; } for(int i = 0 ; i < n ; i++) { for(int j = i + 1 ; j < n ; j++) { if(a[i] != a[j] && a[i] <= 0) { System.out.println(-1); return; } } } System.out.println(a[0]); } }