結果

問題 No.185 和風
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-31 23:06:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 1,000 ms
コード長 571 bytes
コンパイル時間 3,124 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 43,512 KB
最終ジャッジ日時 2024-05-02 01:50:11
合計ジャッジ時間 5,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
42,384 KB
testcase_01 AC 183 ms
43,412 KB
testcase_02 AC 118 ms
41,336 KB
testcase_03 AC 117 ms
40,904 KB
testcase_04 AC 121 ms
41,468 KB
testcase_05 AC 118 ms
41,152 KB
testcase_06 AC 188 ms
43,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No185 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int count = s.nextInt();
        int diff = -1;
        for (int i = 0; i < count; i++) {
            if (i == 0) {
                diff = -s.nextInt() + s.nextInt();
                if (diff < 1) {
                    diff = -1;
                }
            } else if (-s.nextInt() + s.nextInt() != diff) {
                diff = -1;
                break;
            }
        }
        System.out.println(diff);
    }
}
0