結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,004 KB
testcase_01 AC 54 ms
36,800 KB
testcase_02 AC 53 ms
36,656 KB
testcase_03 AC 54 ms
36,800 KB
testcase_04 AC 54 ms
37,112 KB
testcase_05 AC 53 ms
36,836 KB
testcase_06 AC 55 ms
36,536 KB
testcase_07 AC 55 ms
37,272 KB
testcase_08 AC 53 ms
37,204 KB
testcase_09 AC 55 ms
37,272 KB
testcase_10 AC 54 ms
36,816 KB
testcase_11 AC 56 ms
37,352 KB
testcase_12 AC 56 ms
37,324 KB
testcase_13 AC 54 ms
37,240 KB
testcase_14 AC 55 ms
37,112 KB
testcase_15 AC 55 ms
36,800 KB
testcase_16 AC 54 ms
37,168 KB
testcase_17 AC 54 ms
37,352 KB
testcase_18 AC 56 ms
37,352 KB
testcase_19 WA -
testcase_20 AC 53 ms
36,944 KB
testcase_21 WA -
testcase_22 AC 53 ms
37,156 KB
testcase_23 WA -
testcase_24 AC 55 ms
37,324 KB
testcase_25 WA -
testcase_26 AC 54 ms
37,352 KB
testcase_27 AC 54 ms
37,336 KB
testcase_28 WA -
testcase_29 AC 53 ms
37,112 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];
	    	  for(int i=0;i<N;i++){
	    		  num[i] = Integer.parseInt(stdReader.readLine());
	    	  }	    	  
	    	  Arrays.sort(num);
	    	  int center = num[(N-1)/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