結果

問題 No.198 キャンディー・ボックス2
ユーザー tentententen
提出日時 2020-11-17 21:26:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 579 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 54,588 KB
最終ジャッジ日時 2024-07-23 08:29:30
合計ジャッジ時間 7,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,084 KB
testcase_01 AC 133 ms
53,828 KB
testcase_02 AC 135 ms
54,164 KB
testcase_03 AC 135 ms
54,140 KB
testcase_04 AC 137 ms
54,056 KB
testcase_05 AC 136 ms
54,020 KB
testcase_06 AC 135 ms
54,100 KB
testcase_07 AC 133 ms
54,232 KB
testcase_08 AC 132 ms
54,276 KB
testcase_09 AC 129 ms
54,024 KB
testcase_10 AC 132 ms
54,016 KB
testcase_11 AC 137 ms
54,096 KB
testcase_12 AC 135 ms
54,164 KB
testcase_13 AC 136 ms
54,588 KB
testcase_14 AC 135 ms
54,132 KB
testcase_15 AC 134 ms
54,440 KB
testcase_16 AC 133 ms
54,252 KB
testcase_17 AC 135 ms
54,220 KB
testcase_18 AC 135 ms
54,152 KB
testcase_19 AC 132 ms
54,052 KB
testcase_20 AC 138 ms
53,824 KB
testcase_21 AC 134 ms
54,228 KB
testcase_22 AC 135 ms
54,352 KB
testcase_23 AC 134 ms
53,988 KB
testcase_24 AC 132 ms
54,112 KB
testcase_25 AC 133 ms
54,340 KB
testcase_26 AC 134 ms
54,136 KB
testcase_27 AC 137 ms
54,288 KB
testcase_28 AC 133 ms
54,196 KB
testcase_29 AC 135 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int b = sc.nextInt();
        int n = sc.nextInt();
        int[] arr = new int[n];
        long sum = b;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            sum += arr[i];
        }
        Arrays.sort(arr);
        long count = Math.min(arr[(n - 1) / 2], sum / n);
        long ans = 0;
        for (int x : arr) {
            ans += Math.abs(count - x);
        }
        System.out.println(ans);
    }
}
0