結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 110 ms
54,032 KB
testcase_03 AC 111 ms
54,304 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 100 ms
53,092 KB
testcase_10 AC 118 ms
53,976 KB
testcase_11 AC 122 ms
54,088 KB
testcase_12 AC 113 ms
53,900 KB
testcase_13 WA -
testcase_14 AC 107 ms
53,980 KB
testcase_15 AC 107 ms
54,144 KB
testcase_16 AC 111 ms
53,820 KB
testcase_17 AC 123 ms
54,144 KB
testcase_18 AC 115 ms
54,244 KB
testcase_19 AC 109 ms
53,984 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 105 ms
53,748 KB
testcase_25 AC 109 ms
53,744 KB
testcase_26 AC 112 ms
53,840 KB
testcase_27 AC 109 ms
54,060 KB
testcase_28 WA -
testcase_29 AC 107 ms
53,924 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 = b;
        for (int i = 0; i < n; i++) {
            c[i] = scanner.nextInt();
            total += c[i];
        }
        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++) {
            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