結果
問題 | No.185 和風 |
ユーザー | kenji_shioya |
提出日時 | 2016-06-19 06:34:04 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 3,387 ms |
コンパイル使用メモリ | 74,220 KB |
実行使用メモリ | 43,684 KB |
最終ジャッジ日時 | 2024-10-11 01:04:39 |
合計ジャッジ時間 | 5,431 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 180 ms
42,188 KB |
testcase_01 | AC | 198 ms
43,396 KB |
testcase_02 | AC | 206 ms
43,684 KB |
testcase_03 | AC | 207 ms
43,536 KB |
testcase_04 | AC | 204 ms
43,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 199 ms
43,564 KB |
ソースコード
import java.util.*; public class Exercise96{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[][] x = new int[n][2]; for(int i = 0; i < n; i++){ x[i][0] = sc.nextInt(); x[i][1] = sc.nextInt(); } int a = x[0][1] - x[0][0]; if(a < 0){ System.out.println(-1); return; } for(int i = 1; i < n; i++){ if(x[i][1] - x[i][0] != a){ System.out.println(-1); return; } } System.out.println(a); } }