結果

問題 No.198 キャンディー・ボックス2
ユーザー uafr_csuafr_cs
提出日時 2015-09-03 00:15:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 1,043 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 80,492 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-11-16 09:19:22
合計ジャッジ時間 7,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,376 KB
testcase_01 AC 133 ms
41,112 KB
testcase_02 AC 132 ms
41,292 KB
testcase_03 AC 120 ms
40,152 KB
testcase_04 AC 124 ms
39,812 KB
testcase_05 AC 132 ms
41,092 KB
testcase_06 AC 116 ms
40,244 KB
testcase_07 AC 124 ms
40,244 KB
testcase_08 AC 134 ms
41,396 KB
testcase_09 AC 127 ms
41,168 KB
testcase_10 AC 129 ms
41,092 KB
testcase_11 AC 129 ms
41,104 KB
testcase_12 AC 129 ms
41,036 KB
testcase_13 AC 119 ms
40,080 KB
testcase_14 AC 130 ms
41,108 KB
testcase_15 AC 130 ms
41,200 KB
testcase_16 AC 116 ms
40,244 KB
testcase_17 AC 132 ms
41,160 KB
testcase_18 AC 129 ms
41,356 KB
testcase_19 AC 130 ms
41,364 KB
testcase_20 AC 133 ms
40,980 KB
testcase_21 AC 131 ms
41,528 KB
testcase_22 AC 119 ms
40,508 KB
testcase_23 AC 116 ms
40,228 KB
testcase_24 AC 132 ms
41,372 KB
testcase_25 AC 131 ms
41,144 KB
testcase_26 AC 132 ms
41,164 KB
testcase_27 AC 131 ms
41,244 KB
testcase_28 AC 120 ms
40,504 KB
testcase_29 AC 134 ms
41,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Random;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		final long B = sc.nextLong();
		final int N = sc.nextInt();
		
		long[] arr = new long[N];
		for(int i = 0; i < N; i++){
			final long c = sc.nextLong();
		
			arr[i] = c;
		}
		
		Arrays.sort(arr);
		
		long score = Long.MAX_VALUE;
		for(int pos = 0; pos < N; pos++){
			long benefit = B, current_score = 0;
			
			for(int i = 0; i < N; i++){
				benefit += (arr[i] - arr[pos]);
				current_score += Math.abs(arr[i] - arr[pos]);
			}
			if(benefit < 0){ continue; }
			
			score = Math.min(score, current_score);
		}
		
		{
			final long max = (Arrays.stream(arr).sum() + B) / N;
			
			long current_score = 0;
			for(int i = 0; i < N; i++){
				current_score += Math.abs(arr[i] - max);
			}
			
			score = Math.min(score , current_score);
		}
		
		System.out.println(score);

	}

}
0