結果

問題 No.198 キャンディー・ボックス2
ユーザー YamaKasaYamaKasa
提出日時 2018-08-09 19:58:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 899 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 77,044 KB
実行使用メモリ 56,020 KB
最終ジャッジ日時 2024-09-23 04:54:06
合計ジャッジ時間 6,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,988 KB
testcase_01 AC 131 ms
54,156 KB
testcase_02 AC 131 ms
54,068 KB
testcase_03 AC 129 ms
54,204 KB
testcase_04 AC 115 ms
52,984 KB
testcase_05 AC 130 ms
54,116 KB
testcase_06 AC 131 ms
53,980 KB
testcase_07 AC 132 ms
53,776 KB
testcase_08 AC 131 ms
54,084 KB
testcase_09 AC 128 ms
53,972 KB
testcase_10 AC 129 ms
54,028 KB
testcase_11 AC 128 ms
54,012 KB
testcase_12 AC 133 ms
54,016 KB
testcase_13 AC 129 ms
54,136 KB
testcase_14 AC 131 ms
53,992 KB
testcase_15 AC 130 ms
54,188 KB
testcase_16 AC 127 ms
56,020 KB
testcase_17 AC 132 ms
53,972 KB
testcase_18 AC 128 ms
54,100 KB
testcase_19 AC 127 ms
53,788 KB
testcase_20 AC 128 ms
54,244 KB
testcase_21 AC 132 ms
54,104 KB
testcase_22 AC 130 ms
54,136 KB
testcase_23 AC 129 ms
54,004 KB
testcase_24 AC 130 ms
53,864 KB
testcase_25 AC 127 ms
53,700 KB
testcase_26 AC 131 ms
54,084 KB
testcase_27 AC 129 ms
54,104 KB
testcase_28 AC 130 ms
53,936 KB
testcase_29 AC 129 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long B = scan.nextLong();
		int N = scan.nextInt();
		long[] C = new long[N];
		long sum = B;
		for(int i = 0; i < N; i++) {
			C[i] = scan.nextLong();
			sum += C[i];
		}
		scan.close();
		if(N == 1) {
			System.out.println("0");
			System.exit(0);
		}
		long r = sum / N;
		long l = 0;

		long min = Long.MAX_VALUE;
		while(r - l > 3) {
			long x1 = (l * 2 + r) / 3;
			long x2 = (l + r * 2) / 3;
			long t1 = 0;
			long t2 = 0;
			for(int i = 0; i < N; i++) {
				t1 += Math.abs(x1 - C[i]);
				t2 += Math.abs(x2 - C[i]);
			}
			if(t1 > t2) {
				l = x1;
			}else {
				r = x2;
			}
		}
		for(long i = l; i <= r; i++) {
			long t = 0;
			for(int j = 0; j < N; j++) {
				t += Math.abs(i - C[j]);
			}
			min = Math.min(min, t);
		}
		System.out.println(min);
	}
}
0