結果

問題 No.178 美しいWhitespace (1)
ユーザー Flere0114Flere0114
提出日時 2016-02-24 12:41:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 3,543 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-09-22 13:17:47
合計ジャッジ時間 8,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,840 KB
testcase_01 AC 129 ms
54,272 KB
testcase_02 AC 130 ms
53,972 KB
testcase_03 AC 129 ms
54,136 KB
testcase_04 AC 183 ms
54,180 KB
testcase_05 AC 183 ms
54,400 KB
testcase_06 AC 184 ms
54,464 KB
testcase_07 AC 184 ms
54,276 KB
testcase_08 AC 184 ms
54,176 KB
testcase_09 AC 186 ms
54,300 KB
testcase_10 AC 183 ms
54,220 KB
testcase_11 AC 182 ms
54,304 KB
testcase_12 AC 182 ms
54,092 KB
testcase_13 AC 184 ms
54,476 KB
testcase_14 AC 183 ms
54,020 KB
testcase_15 AC 182 ms
54,396 KB
testcase_16 AC 180 ms
54,104 KB
testcase_17 AC 184 ms
54,224 KB
testcase_18 AC 181 ms
54,392 KB
testcase_19 AC 183 ms
54,460 KB
testcase_20 AC 183 ms
54,256 KB
testcase_21 AC 183 ms
54,276 KB
testcase_22 AC 174 ms
54,264 KB
testcase_23 AC 182 ms
54,384 KB
testcase_24 AC 184 ms
54,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No178 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long max = 0, ans = 0;
        int N;
        N = Integer.parseInt(sc.next());
        long[] a = new long[N];
        long[] b = new long[N];

        for (int i = 0; i < N; i++) {
            a[i] = Long.parseLong(sc.next());
            b[i] = Long.parseLong(sc.next());
            max = Math.max(max, a[i] + 4 * b[i]);
        }

        for (int i = 0; i < N; i++) {
            long po = max - (a[i] + 4 * b[i]);
            if(po % 2 == 1){
                System.out.println(-1);
                return;
            }
            ans += po / 2;
        }

        System.out.println(ans);
    }
}
0