結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,096 KB
testcase_01 AC 131 ms
41,248 KB
testcase_02 AC 127 ms
41,088 KB
testcase_03 AC 126 ms
41,120 KB
testcase_04 AC 126 ms
41,448 KB
testcase_05 AC 125 ms
41,204 KB
testcase_06 AC 128 ms
41,472 KB
testcase_07 AC 115 ms
41,496 KB
testcase_08 AC 114 ms
41,248 KB
testcase_09 AC 127 ms
41,548 KB
testcase_10 AC 131 ms
40,980 KB
testcase_11 AC 124 ms
40,844 KB
testcase_12 AC 125 ms
41,076 KB
testcase_13 WA -
testcase_14 AC 125 ms
41,108 KB
testcase_15 AC 124 ms
41,656 KB
testcase_16 AC 127 ms
41,724 KB
testcase_17 AC 122 ms
41,616 KB
testcase_18 AC 125 ms
41,476 KB
testcase_19 WA -
testcase_20 AC 129 ms
41,364 KB
testcase_21 WA -
testcase_22 AC 124 ms
41,068 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 126 ms
41,808 KB
testcase_27 AC 127 ms
41,460 KB
testcase_28 WA -
testcase_29 AC 128 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
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