結果

問題 No.178 美しいWhitespace (1)
ユーザー tentententen
提出日時 2020-12-07 14:17:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 57,652 KB
最終ジャッジ日時 2024-09-17 13:53:46
合計ジャッジ時間 7,359 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,860 KB
testcase_01 AC 102 ms
52,840 KB
testcase_02 AC 111 ms
52,952 KB
testcase_03 AC 111 ms
53,864 KB
testcase_04 AC 185 ms
56,676 KB
testcase_05 AC 190 ms
57,352 KB
testcase_06 AC 188 ms
56,680 KB
testcase_07 AC 185 ms
56,996 KB
testcase_08 AC 186 ms
57,652 KB
testcase_09 AC 195 ms
57,108 KB
testcase_10 AC 194 ms
57,216 KB
testcase_11 AC 194 ms
56,396 KB
testcase_12 AC 195 ms
57,056 KB
testcase_13 AC 194 ms
56,716 KB
testcase_14 AC 197 ms
56,808 KB
testcase_15 AC 194 ms
56,760 KB
testcase_16 AC 194 ms
56,904 KB
testcase_17 AC 186 ms
57,384 KB
testcase_18 AC 190 ms
56,772 KB
testcase_19 AC 198 ms
56,640 KB
testcase_20 AC 190 ms
57,192 KB
testcase_21 AC 193 ms
57,296 KB
testcase_22 AC 177 ms
56,444 KB
testcase_23 AC 181 ms
56,940 KB
testcase_24 AC 191 ms
56,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        TreeMap<Integer, Integer> map = new TreeMap<>();
        for (int i = 0; i < n; i++) {
            int value = sc.nextInt() + sc.nextInt() * 4;
            map.put(value, map.getOrDefault(value, 0) + 1);
        }
        long max = map.lastKey();
        long ans = 0;
        for (int x : map.keySet()) {
            if (max % 2 != x % 2) {
                System.out.println(-1);
                return;
            }
            ans += (max - x) / 2 * map.get(x);
        }
        System.out.println(ans);
    }
}
0