結果

問題 No.198 キャンディー・ボックス2
ユーザー haruki_57haruki_57
提出日時 2015-05-04 01:19:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 730 bytes
コンパイル時間 1,902 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 55,860 KB
最終ジャッジ日時 2024-07-05 18:43:04
合計ジャッジ時間 6,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,400 KB
testcase_01 AC 124 ms
41,532 KB
testcase_02 AC 127 ms
41,604 KB
testcase_03 AC 110 ms
40,964 KB
testcase_04 AC 126 ms
41,404 KB
testcase_05 AC 127 ms
40,956 KB
testcase_06 AC 129 ms
41,204 KB
testcase_07 AC 124 ms
41,240 KB
testcase_08 AC 129 ms
40,908 KB
testcase_09 AC 129 ms
41,456 KB
testcase_10 AC 123 ms
41,252 KB
testcase_11 AC 131 ms
41,648 KB
testcase_12 AC 127 ms
41,108 KB
testcase_13 AC 130 ms
41,180 KB
testcase_14 AC 125 ms
41,104 KB
testcase_15 AC 127 ms
41,088 KB
testcase_16 AC 127 ms
41,044 KB
testcase_17 AC 127 ms
41,636 KB
testcase_18 AC 115 ms
41,488 KB
testcase_19 AC 134 ms
41,552 KB
testcase_20 AC 125 ms
42,052 KB
testcase_21 WA -
testcase_22 AC 126 ms
41,216 KB
testcase_23 WA -
testcase_24 AC 125 ms
41,540 KB
testcase_25 WA -
testcase_26 AC 127 ms
41,376 KB
testcase_27 AC 128 ms
41,468 KB
testcase_28 WA -
testcase_29 AC 133 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {

    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        int b = sc.nextInt();
        int n = sc.nextInt();
        int[] c = new int[n];
        for (int i = 0; i < c.length; i++) {
            c[i] = sc.nextInt();
        }
        long ans = Long.MAX_VALUE;
        for (int i = 0; i < c.length; i++) {
            int d = c[i];
            int bb = b;
            long cnt = 0;
            for (int j = 0; j < c.length; j++) {
                cnt += Math.abs(c[j]-d);
                bb -= d-c[j];
            }
            if(bb < 0)continue;
            ans = Math.min(ans, cnt);   
        }
        System.out.println(ans);
    }

}
0