結果

問題 No.198 キャンディー・ボックス2
ユーザー htensaihtensai
提出日時 2020-01-23 13:22:18
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,141 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 76,848 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-19 04:55:25
合計ジャッジ時間 6,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 102 ms
41,040 KB
testcase_03 AC 113 ms
41,364 KB
testcase_04 AC 115 ms
40,120 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 117 ms
41,344 KB
testcase_08 WA -
testcase_09 AC 125 ms
41,344 KB
testcase_10 AC 128 ms
41,248 KB
testcase_11 AC 123 ms
40,980 KB
testcase_12 AC 117 ms
41,136 KB
testcase_13 WA -
testcase_14 AC 119 ms
41,256 KB
testcase_15 AC 103 ms
41,032 KB
testcase_16 AC 108 ms
41,268 KB
testcase_17 AC 109 ms
40,980 KB
testcase_18 AC 102 ms
41,156 KB
testcase_19 AC 114 ms
41,032 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 124 ms
41,268 KB
testcase_25 AC 114 ms
41,132 KB
testcase_26 AC 121 ms
41,116 KB
testcase_27 AC 120 ms
41,368 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[]  args) {
        Scanner sc = new Scanner(System.in);
        long total = sc.nextInt();
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            total += arr[i];
        }
        long left = 0;
        long right = total / n;
        boolean isRight = false;
        while (right - left > 2) {
            long m1 = (left * 2 + right) / 3;
            long m2 = (left + right * 2) / 3;
            if (calc((int)m1, arr) <= calc((int)m2, arr)) {
                right = m2;
                isRight = false;
            } else {
                isRight = true;
                left = m1;
            }
        }
        System.out.println(Math.min(Math.min(calc((int)right, arr), calc((int)left, arr)), Math.min(calc((int)((left * 2 + right) / 3), arr), calc((int)((left + right * 2) / 3), arr))));
    }
    
    static int calc(int x, int[] arr) {
        int ans = 0;
        for (int y : arr) {
            ans += Math.abs(x - y);
        }
        return ans;
    }
}
0