結果

問題 No.156 キャンディー・ボックス
ユーザー dazydazy
提出日時 2016-09-23 14:04:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 808 bytes
コンパイル時間 3,355 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-07-05 15:55:05
合計ジャッジ時間 8,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,412 KB
testcase_01 AC 125 ms
41,172 KB
testcase_02 AC 124 ms
41,312 KB
testcase_03 AC 109 ms
39,892 KB
testcase_04 AC 125 ms
41,008 KB
testcase_05 AC 108 ms
39,852 KB
testcase_06 AC 121 ms
40,948 KB
testcase_07 AC 126 ms
41,160 KB
testcase_08 AC 115 ms
39,760 KB
testcase_09 AC 129 ms
41,344 KB
testcase_10 AC 130 ms
41,236 KB
testcase_11 AC 126 ms
41,108 KB
testcase_12 AC 128 ms
41,024 KB
testcase_13 AC 123 ms
41,332 KB
testcase_14 AC 120 ms
41,176 KB
testcase_15 AC 128 ms
41,076 KB
testcase_16 AC 131 ms
41,084 KB
testcase_17 AC 128 ms
41,284 KB
testcase_18 AC 115 ms
39,852 KB
testcase_19 AC 126 ms
41,416 KB
testcase_20 AC 126 ms
41,028 KB
testcase_21 AC 113 ms
40,068 KB
testcase_22 AC 128 ms
40,904 KB
testcase_23 AC 128 ms
41,168 KB
testcase_24 AC 126 ms
41,680 KB
testcase_25 AC 110 ms
40,276 KB
testcase_26 AC 125 ms
41,148 KB
testcase_27 AC 126 ms
41,124 KB
testcase_28 AC 127 ms
41,504 KB
testcase_29 AC 127 ms
41,328 KB
testcase_30 AC 128 ms
41,000 KB
testcase_31 AC 122 ms
41,152 KB
testcase_32 AC 125 ms
41,384 KB
testcase_33 AC 125 ms
41,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N,M;
        N = scan.nextInt();
        M = scan.nextInt();
        int[] C = new int[N];
        int i, tmp, min, ans = 0;
        for (i = 0; i < N; i++) C[i] = scan.nextInt();
        for (int j = 0; j < N; j++) {
            min = C[j];
            for (i = N - 1; i > j; i--) {
                if (min > C[i]) {
                    tmp = min;
                    min = C[i];
                    C[i] = tmp;
                }
            }
            if (M >= min) {
                M -= min;
                ans++;
                if (M==0) break;
            } else {
                break;
            }
        }
        System.out.println(ans);
    }
}
0