結果

問題 No.156 キャンディー・ボックス
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 07:49:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 41,380 KB
最終ジャッジ日時 2024-07-05 15:57:06
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,292 KB
testcase_01 AC 120 ms
41,156 KB
testcase_02 AC 121 ms
41,064 KB
testcase_03 AC 105 ms
40,924 KB
testcase_04 AC 103 ms
41,312 KB
testcase_05 AC 104 ms
41,152 KB
testcase_06 AC 104 ms
41,260 KB
testcase_07 AC 94 ms
40,028 KB
testcase_08 AC 104 ms
41,332 KB
testcase_09 AC 103 ms
40,940 KB
testcase_10 AC 105 ms
41,012 KB
testcase_11 AC 97 ms
40,156 KB
testcase_12 AC 105 ms
40,816 KB
testcase_13 AC 106 ms
41,076 KB
testcase_14 AC 103 ms
41,292 KB
testcase_15 AC 108 ms
40,908 KB
testcase_16 AC 105 ms
40,832 KB
testcase_17 AC 104 ms
41,380 KB
testcase_18 AC 105 ms
39,992 KB
testcase_19 AC 104 ms
41,048 KB
testcase_20 AC 96 ms
39,940 KB
testcase_21 AC 98 ms
40,680 KB
testcase_22 AC 105 ms
39,920 KB
testcase_23 AC 97 ms
39,864 KB
testcase_24 AC 104 ms
41,040 KB
testcase_25 AC 93 ms
40,156 KB
testcase_26 AC 104 ms
40,920 KB
testcase_27 AC 105 ms
41,336 KB
testcase_28 AC 108 ms
41,080 KB
testcase_29 AC 102 ms
41,304 KB
testcase_30 AC 106 ms
41,016 KB
testcase_31 AC 107 ms
40,008 KB
testcase_32 AC 96 ms
39,864 KB
testcase_33 AC 105 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = sc.nextInt();
        int [] C = new int [N];
        for(int i=0; i<N; i++){
            C[i] = sc.nextInt();
        }
        Arrays.sort(C);
        int count=0;
        for(int i=0; i<N; i++){
            M = M-C[i];
            if(M<0){
                break;
            }
            count++;
        }
        System.out.println(count);
    }
}
0