結果
問題 | No.185 和風 |
ユーザー | misk703 |
提出日時 | 2018-05-14 12:41:00 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 522 bytes |
コンパイル時間 | 3,478 ms |
コンパイル使用メモリ | 75,980 KB |
実行使用メモリ | 56,936 KB |
最終ジャッジ日時 | 2024-06-28 10:52:01 |
合計ジャッジ時間 | 5,554 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 192 ms
42,436 KB |
testcase_01 | AC | 211 ms
43,296 KB |
testcase_02 | AC | 204 ms
43,320 KB |
testcase_03 | AC | 211 ms
43,240 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 206 ms
43,380 KB |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Wahu { public static void main(String[] args) { Scanner s = new Scanner(System.in); int N = Integer.parseInt(s.nextLine()); ArrayList<Integer> list = new ArrayList<>(); for(int i=0;i<N;i++){ int a = s.nextInt(); int b = s.nextInt(); list.add(b-a); } int buff = list.get(0); for(int i=1;i<list.size();i++){ if(buff != list.get(i)){ System.out.println(-1); return; } } System.out.println(buff); return; } }