結果

問題 No.198 キャンディー・ボックス2
ユーザー kuramukuramu
提出日時 2016-02-11 19:15:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 859 bytes
コンパイル時間 4,405 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 50,380 KB
最終ジャッジ日時 2024-11-16 09:48:06
合計ジャッジ時間 5,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,180 KB
testcase_01 AC 54 ms
50,300 KB
testcase_02 AC 54 ms
50,028 KB
testcase_03 AC 57 ms
50,140 KB
testcase_04 AC 56 ms
50,180 KB
testcase_05 AC 54 ms
50,152 KB
testcase_06 AC 58 ms
50,356 KB
testcase_07 AC 57 ms
50,380 KB
testcase_08 AC 58 ms
50,236 KB
testcase_09 AC 55 ms
50,184 KB
testcase_10 AC 57 ms
50,128 KB
testcase_11 AC 54 ms
50,356 KB
testcase_12 AC 55 ms
50,148 KB
testcase_13 AC 54 ms
50,324 KB
testcase_14 AC 54 ms
50,164 KB
testcase_15 AC 55 ms
50,344 KB
testcase_16 AC 55 ms
50,124 KB
testcase_17 AC 54 ms
49,860 KB
testcase_18 AC 54 ms
50,156 KB
testcase_19 AC 55 ms
50,012 KB
testcase_20 AC 56 ms
50,056 KB
testcase_21 AC 54 ms
50,132 KB
testcase_22 AC 57 ms
50,140 KB
testcase_23 AC 54 ms
50,240 KB
testcase_24 AC 55 ms
50,232 KB
testcase_25 AC 57 ms
50,260 KB
testcase_26 AC 58 ms
50,128 KB
testcase_27 AC 57 ms
50,152 KB
testcase_28 AC 55 ms
50,028 KB
testcase_29 AC 53 ms
49,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	 public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  int B = Integer.parseInt(stdReader.readLine());
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  int[] num = new int[N];
	    	  long sum = B;
	    	  for(int i=0;i<N;i++){
	    		  num[i] = Integer.parseInt(stdReader.readLine());
	    		  sum += num[i];
	    	  }	    	  
	    	  Arrays.sort(num);
	    	  long center = Math.min(sum/N,num[N/2]);
	    	  long ans = 0;
	    	  for(int i=0;i<N;i++){
	    		  ans += Math.abs(num[i]-center);
	    	  }
	    	  System.out.println(ans);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0