結果

問題 No.198 キャンディー・ボックス2
ユーザー kou6839kou6839
提出日時 2015-04-29 18:54:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 904 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 76,992 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-11-16 09:02:46
合計ジャッジ時間 6,631 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,284 KB
testcase_01 AC 126 ms
41,012 KB
testcase_02 AC 118 ms
40,100 KB
testcase_03 AC 134 ms
41,316 KB
testcase_04 AC 124 ms
41,112 KB
testcase_05 AC 113 ms
40,216 KB
testcase_06 AC 119 ms
40,188 KB
testcase_07 AC 125 ms
41,108 KB
testcase_08 AC 112 ms
40,200 KB
testcase_09 AC 122 ms
41,340 KB
testcase_10 AC 123 ms
41,236 KB
testcase_11 AC 119 ms
41,208 KB
testcase_12 AC 124 ms
41,204 KB
testcase_13 AC 111 ms
39,968 KB
testcase_14 AC 125 ms
41,180 KB
testcase_15 AC 119 ms
41,116 KB
testcase_16 AC 125 ms
41,236 KB
testcase_17 AC 121 ms
41,164 KB
testcase_18 AC 123 ms
40,996 KB
testcase_19 AC 125 ms
41,316 KB
testcase_20 AC 123 ms
41,280 KB
testcase_21 AC 113 ms
39,948 KB
testcase_22 AC 116 ms
39,884 KB
testcase_23 AC 126 ms
41,236 KB
testcase_24 AC 123 ms
41,376 KB
testcase_25 AC 123 ms
41,312 KB
testcase_26 AC 114 ms
40,176 KB
testcase_27 AC 127 ms
41,240 KB
testcase_28 AC 125 ms
41,276 KB
testcase_29 AC 128 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		long B = sc.nextLong();
		long N = sc.nextLong();
		long[] can = new long[(int)N];
		for(int i=0;i<N;i++){
			can[i]=sc.nextInt();
		}
		long l = -1;long r=1000000000000L;
		while(r-l>2){
			long lm=(2*l+r)/3, rm=(l+2*r)/3;
			long lsum=0,rsum=0;
			for(int i=0;i<N;i++){
				lsum+=lm-can[i];
			}

			for(int i=0;i<N;i++){
				rsum+=rm-can[i];
			}
			long ll=0,rr=0;
			for(int i=0;i<N;i++){
				ll+=Math.abs(lm-can[i]);
			}
			for(int i=0;i<N;i++){
				rr+=Math.abs(rm-can[i]);
			}
			if(lsum>B){
				r=lm;
			}else if(rsum>B){
				r=rm;
			}else if(ll<=rr){
				r=rm;
			}else{
				l=lm;
			}
		}
		long ans=0;
		for(int i=0;i<N;i++){
			ans+=Math.abs((r+l)/2-(long)can[i]);
		}
		System.out.println(ans);
	}
}
0