結果

問題 No.198 キャンディー・ボックス2
ユーザー kuramukuramu
提出日時 2016-02-11 17:31:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 52,604 KB
最終ジャッジ日時 2024-09-22 00:53:08
合計ジャッジ時間 4,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,704 KB
testcase_01 AC 55 ms
36,552 KB
testcase_02 AC 54 ms
36,924 KB
testcase_03 AC 55 ms
36,924 KB
testcase_04 WA -
testcase_05 AC 55 ms
37,016 KB
testcase_06 AC 55 ms
36,896 KB
testcase_07 WA -
testcase_08 AC 56 ms
36,704 KB
testcase_09 AC 55 ms
36,972 KB
testcase_10 AC 56 ms
36,840 KB
testcase_11 AC 54 ms
37,024 KB
testcase_12 AC 54 ms
36,968 KB
testcase_13 AC 54 ms
37,088 KB
testcase_14 AC 55 ms
37,016 KB
testcase_15 AC 56 ms
37,080 KB
testcase_16 AC 55 ms
36,924 KB
testcase_17 AC 55 ms
36,716 KB
testcase_18 AC 57 ms
37,048 KB
testcase_19 AC 56 ms
37,128 KB
testcase_20 AC 56 ms
37,208 KB
testcase_21 WA -
testcase_22 AC 56 ms
37,136 KB
testcase_23 WA -
testcase_24 AC 55 ms
36,704 KB
testcase_25 AC 55 ms
36,840 KB
testcase_26 AC 55 ms
37,032 KB
testcase_27 AC 55 ms
37,136 KB
testcase_28 WA -
testcase_29 AC 55 ms
36,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];
	    	  int sum = B;
	    	  for(int i=0;i<N;i++){
	    		  num[i] = Integer.parseInt(stdReader.readLine());
	    		  sum += num[i];
	    	  }	    	  
	    	  Arrays.sort(num);
	    	  int center = num[(N-1)/2];
	    	  if(sum < center * N){
	    		  center = sum/N;
	    	  }
	    	  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