結果

問題 No.185 和風
ユーザー tentententen
提出日時 2020-11-10 17:25:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 1,000 ms
コード長 524 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 73,864 KB
実行使用メモリ 43,512 KB
最終ジャッジ日時 2024-07-22 17:36:30
合計ジャッジ時間 3,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
42,260 KB
testcase_01 AC 174 ms
43,512 KB
testcase_02 AC 107 ms
41,412 KB
testcase_03 AC 97 ms
40,388 KB
testcase_04 AC 97 ms
40,056 KB
testcase_05 AC 105 ms
40,892 KB
testcase_06 AC 165 ms
43,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int ans = -(sc.nextInt() - sc.nextInt());
        if (ans <= 0) {
            System.out.println(-1);
            return;
        }
        for (int i = 1; i < n; i++) {
            if (ans != -(sc.nextInt() - sc.nextInt())) {
                System.out.println(-1);
                return;
            }
        }
        System.out.println(ans);
    }
}
0