結果

問題 No.156 キャンディー・ボックス
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 21:58:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 2,077 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-07-05 09:13:46
合計ジャッジ時間 7,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,292 KB
testcase_01 AC 127 ms
41,232 KB
testcase_02 AC 124 ms
40,904 KB
testcase_03 AC 114 ms
40,096 KB
testcase_04 AC 129 ms
41,288 KB
testcase_05 AC 128 ms
41,020 KB
testcase_06 AC 129 ms
41,100 KB
testcase_07 AC 126 ms
41,412 KB
testcase_08 AC 127 ms
41,144 KB
testcase_09 AC 119 ms
40,744 KB
testcase_10 AC 126 ms
40,940 KB
testcase_11 AC 125 ms
41,224 KB
testcase_12 AC 128 ms
41,088 KB
testcase_13 AC 115 ms
40,016 KB
testcase_14 AC 113 ms
40,024 KB
testcase_15 AC 125 ms
41,076 KB
testcase_16 AC 126 ms
41,160 KB
testcase_17 AC 126 ms
41,108 KB
testcase_18 AC 126 ms
41,288 KB
testcase_19 AC 110 ms
39,972 KB
testcase_20 AC 100 ms
39,844 KB
testcase_21 AC 126 ms
41,232 KB
testcase_22 AC 124 ms
41,160 KB
testcase_23 AC 126 ms
41,216 KB
testcase_24 AC 120 ms
41,112 KB
testcase_25 AC 128 ms
41,232 KB
testcase_26 AC 128 ms
41,004 KB
testcase_27 AC 119 ms
40,832 KB
testcase_28 AC 124 ms
41,120 KB
testcase_29 AC 126 ms
41,124 KB
testcase_30 AC 124 ms
41,156 KB
testcase_31 AC 136 ms
41,340 KB
testcase_32 AC 139 ms
41,608 KB
testcase_33 AC 144 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
       int n = koko.nextInt();
       int m = koko.nextInt();
       int[] c = new int[n];
       for(int i = 0; i<n; i++){
           c[i] = koko.nextInt();
       }
       Arrays.sort(c);
       int emp = 0;
       int pick = 0;
       for(int i = 0; i<n; i++){
           pick = pick + c[i];
           if(pick<=m){
               emp = emp + 1;
           }else{
               break;
           }
       }
       System.out.println(emp);
    }
}
0