結果
問題 | No.185 和風 |
ユーザー | chiho_miyako |
提出日時 | 2015-04-19 23:27:57 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 815 bytes |
コンパイル時間 | 2,198 ms |
コンパイル使用メモリ | 74,004 KB |
実行使用メモリ | 43,200 KB |
最終ジャッジ日時 | 2024-07-04 18:22:46 |
合計ジャッジ時間 | 3,993 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
41,820 KB |
testcase_01 | AC | 183 ms
43,200 KB |
testcase_02 | AC | 176 ms
43,096 KB |
testcase_03 | AC | 173 ms
43,040 KB |
testcase_04 | AC | 166 ms
42,840 KB |
testcase_05 | WA | - |
testcase_06 | AC | 181 ms
43,096 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int n = koko.nextInt(); int[] x = new int[n]; int[] y = new int[n]; for(int i=0; i<n; i++){ x[i]=koko.nextInt(); y[i]=koko.nextInt(); } int ans = y[0]-x[0]; if(ans<0){ System.out.println(-1); }else{ boolean wflag = false; for(int i=1; i<n; i++){ int b = y[i]-x[i]; if(b!=ans){ System.out.println(-1); wflag=true; break; } } if(!wflag){ System.out.println(ans); } } } }