結果

問題 No.178 美しいWhitespace (1)
ユーザー samplelpmassamplelpmas
提出日時 2016-11-15 13:09:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 45,128 KB
最終ジャッジ日時 2024-11-26 01:41:12
合計ジャッジ時間 7,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,240 KB
testcase_01 AC 131 ms
41,544 KB
testcase_02 AC 130 ms
41,144 KB
testcase_03 AC 132 ms
41,352 KB
testcase_04 AC 202 ms
43,708 KB
testcase_05 AC 202 ms
43,448 KB
testcase_06 AC 208 ms
43,160 KB
testcase_07 AC 205 ms
43,712 KB
testcase_08 AC 204 ms
43,268 KB
testcase_09 AC 204 ms
43,372 KB
testcase_10 AC 203 ms
43,068 KB
testcase_11 AC 201 ms
43,320 KB
testcase_12 AC 200 ms
43,392 KB
testcase_13 AC 205 ms
43,464 KB
testcase_14 AC 203 ms
43,288 KB
testcase_15 AC 202 ms
43,280 KB
testcase_16 AC 202 ms
43,640 KB
testcase_17 AC 204 ms
45,128 KB
testcase_18 AC 201 ms
43,600 KB
testcase_19 AC 202 ms
43,444 KB
testcase_20 AC 206 ms
42,976 KB
testcase_21 AC 200 ms
43,724 KB
testcase_22 AC 196 ms
43,576 KB
testcase_23 AC 204 ms
43,176 KB
testcase_24 AC 200 ms
43,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int lines = sc.nextInt();

        int[] spaces = new int[lines];

        int max = 0;

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

            int space = sc.nextInt();
            int tab = sc.nextInt();

            spaces[i] = space + (4 * tab);

            max = Math.max(max, spaces[i]);

        }

        long ideographicSpaces = 0;

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

            int requiredSpaces = max - spaces[i];

            if (requiredSpaces % 2 == 1) {
                System.out.println(-1);
                return;
            }

            ideographicSpaces += requiredSpaces / 2;

        }

        System.out.println(ideographicSpaces);

    }

}
0