結果

問題 No.198 キャンディー・ボックス2
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-16 06:14:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 699 bytes
コンパイル時間 4,974 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 46,080 KB
最終ジャッジ日時 2024-11-16 10:03:23
合計ジャッジ時間 9,685 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,172 KB
testcase_01 AC 133 ms
41,132 KB
testcase_02 AC 119 ms
41,084 KB
testcase_03 AC 132 ms
41,032 KB
testcase_04 AC 129 ms
41,080 KB
testcase_05 AC 133 ms
40,864 KB
testcase_06 AC 132 ms
41,512 KB
testcase_07 AC 132 ms
41,316 KB
testcase_08 AC 118 ms
41,088 KB
testcase_09 AC 138 ms
40,996 KB
testcase_10 AC 132 ms
41,256 KB
testcase_11 AC 132 ms
41,276 KB
testcase_12 AC 132 ms
41,116 KB
testcase_13 AC 135 ms
41,524 KB
testcase_14 AC 130 ms
41,024 KB
testcase_15 AC 136 ms
40,948 KB
testcase_16 AC 132 ms
41,356 KB
testcase_17 AC 137 ms
41,112 KB
testcase_18 AC 133 ms
40,868 KB
testcase_19 AC 119 ms
41,136 KB
testcase_20 AC 133 ms
41,368 KB
testcase_21 AC 130 ms
41,348 KB
testcase_22 AC 136 ms
41,064 KB
testcase_23 AC 120 ms
40,740 KB
testcase_24 AC 130 ms
41,008 KB
testcase_25 AC 120 ms
40,948 KB
testcase_26 AC 133 ms
41,096 KB
testcase_27 AC 120 ms
40,960 KB
testcase_28 AC 132 ms
41,012 KB
testcase_29 AC 134 ms
46,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise88{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    long h = sc.nextInt();
    int n = sc.nextInt();
    long[] box = new long[n];
    long sum = 0;
    long ave = 0;

    for(int i = 0; i < n; i++){
      box[i] = sc.nextInt();
      sum += box[i];
    }
    sum += h;
    Arrays.sort(box);
    ave = sum / (long)n;
    ave = Math.min(sum / n, box[n / 2]);
    long answer = 0;
    for(int i = 0; i < box.length; i++){
      long x = box[i] - ave;
      if(x == 0){
        continue;
      }else if(x < 0){
      answer += x * -1;
      }else{
      answer += x;
      }
    }
    System.out.println(answer);
  }
}
0