結果

問題 No.198 キャンディー・ボックス2
ユーザー thorikawathorikawa
提出日時 2015-04-29 00:27:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-07-05 05:24:18
合計ジャッジ時間 6,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,928 KB
testcase_01 AC 127 ms
41,364 KB
testcase_02 AC 127 ms
41,428 KB
testcase_03 AC 125 ms
41,636 KB
testcase_04 AC 131 ms
41,232 KB
testcase_05 AC 125 ms
41,092 KB
testcase_06 AC 115 ms
40,348 KB
testcase_07 AC 127 ms
41,368 KB
testcase_08 AC 126 ms
41,584 KB
testcase_09 AC 127 ms
41,388 KB
testcase_10 AC 113 ms
40,328 KB
testcase_11 AC 131 ms
41,244 KB
testcase_12 AC 124 ms
41,516 KB
testcase_13 AC 113 ms
39,988 KB
testcase_14 AC 124 ms
41,332 KB
testcase_15 AC 125 ms
41,660 KB
testcase_16 AC 127 ms
41,736 KB
testcase_17 AC 127 ms
41,340 KB
testcase_18 AC 128 ms
41,472 KB
testcase_19 WA -
testcase_20 AC 114 ms
40,276 KB
testcase_21 WA -
testcase_22 AC 119 ms
40,152 KB
testcase_23 WA -
testcase_24 AC 126 ms
41,368 KB
testcase_25 WA -
testcase_26 AC 129 ms
41,336 KB
testcase_27 AC 124 ms
41,224 KB
testcase_28 WA -
testcase_29 AC 127 ms
41,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

/**
 * Created by poly on 11/29/14.
 */
public class Main {
    public static void main(String[] argv) {
        Scanner scanner = new Scanner(System.in);
        int b = scanner.nextInt();
        int n = scanner.nextInt();
        int[] c = new int[n];
        int total = 0;
        for (int i = 0; i < n; i++) {
            c[i] = scanner.nextInt();
            total += c[i];
        }
        total += b;
        int max = total / n;
        Arrays.sort(c);
        long ans = 0;
        for (int j = 0; j < n; j++) {
            ans += Math.abs(c[j] - max);
        }
        for (int i = 0; i < n; i++) {
            long tmp = 0;
            for (int j = 0; j < n; j++) {
                tmp += Math.abs(c[j] - c[i]);
            }
            ans = Math.min(tmp, ans);
        }
        System.out.println(ans);
    }
}
0