結果

問題 No.198 キャンディー・ボックス2
ユーザー kenkooookenkoooo
提出日時 2015-04-29 00:35:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 861 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-11-16 08:59:44
合計ジャッジ時間 6,767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,976 KB
testcase_01 AC 125 ms
41,336 KB
testcase_02 AC 127 ms
41,348 KB
testcase_03 AC 121 ms
41,120 KB
testcase_04 AC 115 ms
41,160 KB
testcase_05 AC 107 ms
39,968 KB
testcase_06 AC 118 ms
41,100 KB
testcase_07 AC 117 ms
41,280 KB
testcase_08 AC 124 ms
41,196 KB
testcase_09 AC 118 ms
41,064 KB
testcase_10 AC 118 ms
41,200 KB
testcase_11 AC 103 ms
40,152 KB
testcase_12 AC 111 ms
41,108 KB
testcase_13 AC 102 ms
39,912 KB
testcase_14 AC 112 ms
41,180 KB
testcase_15 AC 123 ms
41,248 KB
testcase_16 AC 118 ms
41,184 KB
testcase_17 AC 117 ms
41,156 KB
testcase_18 AC 124 ms
41,172 KB
testcase_19 AC 120 ms
41,276 KB
testcase_20 AC 108 ms
39,968 KB
testcase_21 AC 108 ms
40,156 KB
testcase_22 AC 117 ms
41,164 KB
testcase_23 AC 112 ms
40,048 KB
testcase_24 AC 113 ms
39,928 KB
testcase_25 AC 120 ms
40,200 KB
testcase_26 AC 103 ms
40,184 KB
testcase_27 AC 119 ms
41,168 KB
testcase_28 AC 117 ms
41,276 KB
testcase_29 AC 108 ms
40,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int B = sc.nextInt();
		int N = sc.nextInt();
		int[] C = new int[N];
		for (int i = 0; i < C.length; i++) {
			C[i] = sc.nextInt();
		}
		sc.close();

		long min = Long.MAX_VALUE;
		for (int i = 0; i < C.length; i++) {
			long V = C[i];

			long sum = B;
			for (int j = 0; j < C.length; j++) {
				sum += C[j];
			}
			if (sum < N * V) {
				V = sum / N;
			}

			long stock = B;
			long ope = 0;
			for (int j = 0; j < C.length; j++) {
				// 取り上げ
				stock += Math.max(0, C[j] - V);
				ope += Math.max(0, C[j] - V);
			}
			for (int j = 0; j < C.length; j++) {
				// 配る
				stock -= Math.max(0, V - C[j]);
				ope += Math.max(0, V - C[j]);
			}
			min = Math.min(min, ope);

		}
		System.out.println(min);

	}

}
0