結果

問題 No.198 キャンディー・ボックス2
ユーザー thorikawathorikawa
提出日時 2015-04-29 00:35:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 934 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 49,840 KB
最終ジャッジ日時 2024-11-16 09:00:24
合計ジャッジ時間 6,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
49,760 KB
testcase_01 AC 128 ms
49,780 KB
testcase_02 AC 110 ms
49,840 KB
testcase_03 AC 116 ms
41,352 KB
testcase_04 AC 113 ms
41,120 KB
testcase_05 AC 137 ms
40,932 KB
testcase_06 AC 138 ms
40,856 KB
testcase_07 AC 128 ms
41,252 KB
testcase_08 AC 129 ms
41,236 KB
testcase_09 AC 116 ms
41,144 KB
testcase_10 AC 128 ms
41,056 KB
testcase_11 AC 128 ms
40,836 KB
testcase_12 AC 127 ms
41,120 KB
testcase_13 AC 130 ms
41,108 KB
testcase_14 AC 121 ms
41,096 KB
testcase_15 AC 126 ms
41,112 KB
testcase_16 AC 111 ms
41,360 KB
testcase_17 AC 134 ms
41,060 KB
testcase_18 AC 118 ms
41,004 KB
testcase_19 AC 128 ms
41,244 KB
testcase_20 AC 111 ms
41,360 KB
testcase_21 AC 126 ms
40,968 KB
testcase_22 AC 126 ms
41,232 KB
testcase_23 AC 122 ms
41,132 KB
testcase_24 AC 117 ms
40,836 KB
testcase_25 AC 123 ms
40,924 KB
testcase_26 AC 126 ms
41,224 KB
testcase_27 AC 125 ms
40,996 KB
testcase_28 AC 127 ms
41,084 KB
testcase_29 AC 119 ms
40,936 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();
        long[] c = new long[n];
        long total = b;
        for (int i = 0; i < n; i++) {
            c[i] = scanner.nextLong();
            total += c[i];
        }
        long 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++) {
            if (c[i] > max) {
                break;
            }
            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