結果

問題 No.156 キャンディー・ボックス
ユーザー atkrymatkrym
提出日時 2016-10-24 00:28:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 76,292 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-07-05 15:56:06
合計ジャッジ時間 7,336 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,196 KB
testcase_01 AC 127 ms
41,156 KB
testcase_02 AC 128 ms
41,016 KB
testcase_03 AC 127 ms
41,484 KB
testcase_04 AC 126 ms
41,432 KB
testcase_05 AC 125 ms
41,164 KB
testcase_06 AC 125 ms
41,424 KB
testcase_07 AC 127 ms
41,452 KB
testcase_08 AC 126 ms
41,332 KB
testcase_09 AC 126 ms
41,400 KB
testcase_10 AC 113 ms
41,456 KB
testcase_11 AC 124 ms
41,196 KB
testcase_12 AC 121 ms
41,168 KB
testcase_13 AC 114 ms
41,484 KB
testcase_14 AC 113 ms
40,188 KB
testcase_15 AC 127 ms
41,316 KB
testcase_16 AC 113 ms
41,532 KB
testcase_17 AC 121 ms
41,204 KB
testcase_18 AC 125 ms
41,072 KB
testcase_19 AC 128 ms
41,384 KB
testcase_20 AC 123 ms
41,320 KB
testcase_21 AC 126 ms
41,128 KB
testcase_22 AC 128 ms
41,252 KB
testcase_23 AC 125 ms
41,276 KB
testcase_24 AC 114 ms
39,776 KB
testcase_25 AC 116 ms
41,180 KB
testcase_26 AC 115 ms
39,836 KB
testcase_27 AC 124 ms
41,284 KB
testcase_28 AC 125 ms
41,328 KB
testcase_29 AC 125 ms
41,052 KB
testcase_30 AC 116 ms
41,472 KB
testcase_31 AC 115 ms
40,076 KB
testcase_32 AC 116 ms
39,916 KB
testcase_33 AC 123 ms
41,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int m = sc.nextInt();
        List<Integer> list = new ArrayList<>();
        for (int i = 0;i < n;i++) {
            list.add(sc.nextInt());
        }
        
        Collections.sort(list);

        int ret = 0;
        for (int i = 0;i < n;i++) {
            int num = list.get(i);
            if (num <= m) {
                ret++;
                m -= num;
            } else {
                break;
            }
        }
        
        System.out.println(ret);
    }
}
0