結果

問題 No.178 美しいWhitespace (1)
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-30 10:32:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,193 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 77,616 KB
実行使用メモリ 51,372 KB
最終ジャッジ日時 2024-09-13 23:29:29
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,032 KB
testcase_01 AC 54 ms
50,088 KB
testcase_02 AC 54 ms
50,092 KB
testcase_03 AC 54 ms
49,824 KB
testcase_04 AC 80 ms
51,252 KB
testcase_05 AC 90 ms
51,248 KB
testcase_06 AC 90 ms
51,164 KB
testcase_07 AC 81 ms
51,180 KB
testcase_08 AC 89 ms
50,936 KB
testcase_09 AC 82 ms
51,288 KB
testcase_10 AC 83 ms
51,128 KB
testcase_11 AC 92 ms
50,812 KB
testcase_12 AC 82 ms
50,924 KB
testcase_13 AC 90 ms
50,920 KB
testcase_14 AC 79 ms
50,724 KB
testcase_15 AC 80 ms
50,880 KB
testcase_16 AC 88 ms
51,336 KB
testcase_17 AC 91 ms
51,328 KB
testcase_18 AC 84 ms
51,104 KB
testcase_19 AC 81 ms
51,232 KB
testcase_20 AC 79 ms
51,156 KB
testcase_21 AC 81 ms
51,372 KB
testcase_22 AC 76 ms
51,072 KB
testcase_23 AC 93 ms
50,848 KB
testcase_24 AC 92 ms
51,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        String[] inputs;
        long max = Long.MIN_VALUE;
        long[] widths = new long[N];
        for (int i = 0; i < N; i++) {
            inputs = reader.readLine().split(" ");
            long a = Long.parseLong(inputs[0]);
            long b = Long.parseLong(inputs[1]);
            widths[i] = a + 4 * b;
            max = Math.max(max, a + 4 * b);
        }
        long numOfSpaces = 0;
        boolean isPerfect = true;
        for (int i = 0; i < N; i++) {
            if ((max - widths[i]) % 2 != 0) {
                isPerfect = false;
                break;
            } else {
                numOfSpaces += (max - widths[i]) / 2;

            }

        }

        if (isPerfect) {
            System.out.println(numOfSpaces);
        } else {
            System.out.println(-1);
        }

    }
}

0