結果

問題 No.185 和風
ユーザー samplelpmassamplelpmas
提出日時 2016-11-17 04:15:30
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 653 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 73,904 KB
実行使用メモリ 58,796 KB
最終ジャッジ日時 2024-05-04 14:40:48
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 170 ms
43,452 KB
testcase_02 AC 116 ms
41,288 KB
testcase_03 AC 102 ms
41,460 KB
testcase_04 AC 107 ms
41,172 KB
testcase_05 AC 110 ms
41,304 KB
testcase_06 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int xFirst = sc.nextInt();
        int yFirst = sc.nextInt();

        int answer = yFirst - xFirst;

        if (answer <= 0) {
            System.out.println(-1);
            return;
        }

        for (int i = 0; i < n; i++) {

            int x = sc.nextInt();
            int y = sc.nextInt();

            if (answer != y - x) {
                System.out.println(-1);
                return;
            }

        }

        System.out.println(answer);

    }

}
0