結果

問題 No.198 キャンディー・ボックス2
ユーザー uafr_csuafr_cs
提出日時 2015-09-02 22:46:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 56,320 KB
最終ジャッジ日時 2024-07-18 21:44:22
合計ジャッジ時間 7,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,436 KB
testcase_01 AC 117 ms
40,100 KB
testcase_02 AC 128 ms
41,064 KB
testcase_03 AC 126 ms
41,444 KB
testcase_04 AC 128 ms
41,292 KB
testcase_05 AC 115 ms
39,812 KB
testcase_06 AC 130 ms
41,584 KB
testcase_07 AC 128 ms
41,088 KB
testcase_08 AC 128 ms
41,300 KB
testcase_09 AC 128 ms
41,236 KB
testcase_10 AC 127 ms
41,444 KB
testcase_11 AC 129 ms
41,252 KB
testcase_12 AC 128 ms
41,376 KB
testcase_13 WA -
testcase_14 AC 128 ms
41,420 KB
testcase_15 AC 126 ms
41,280 KB
testcase_16 AC 129 ms
41,332 KB
testcase_17 AC 131 ms
41,212 KB
testcase_18 AC 128 ms
41,420 KB
testcase_19 WA -
testcase_20 AC 130 ms
41,280 KB
testcase_21 WA -
testcase_22 AC 128 ms
41,156 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 129 ms
41,312 KB
testcase_27 AC 129 ms
41,196 KB
testcase_28 WA -
testcase_29 AC 130 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
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[pos] - arr[i]);
				current_score += Math.abs(arr[pos] - arr[i]);
			}
			
			if(benefit < 0){ continue; }
			
			score = Math.min(score, current_score);
		}
		
		System.out.println(score);

	}

}
0