結果
問題 | No.185 和風 |
ユーザー | _k_a_n_i_ |
提出日時 | 2015-04-23 17:54:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 847 bytes |
コンパイル時間 | 1,903 ms |
コンパイル使用メモリ | 74,684 KB |
実行使用メモリ | 56,640 KB |
最終ジャッジ日時 | 2024-07-05 00:30:47 |
合計ジャッジ時間 | 3,657 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 172 ms
54,188 KB |
testcase_01 | AC | 185 ms
56,640 KB |
testcase_02 | AC | 126 ms
54,100 KB |
testcase_03 | AC | 124 ms
54,160 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 192 ms
56,600 KB |
ソースコード
import java.util.Scanner; public class Main { private final static Main main = new Main(); public static void main(String[] args) { long l = System.currentTimeMillis(); main.solve(); //System.out.println("処理時間:" + (System.currentTimeMillis() - l)); } private void solve() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int ans = (sc.nextInt()-sc.nextInt())*-1; boolean flag = false; for(int i=1; i<n; ++i) { int x = sc.nextInt(); int y = sc.nextInt(); if(ans + x == y) { flag = true; } else { flag = false; break; } } System.out.println(flag ? ans : -1); } }