結果

問題 No.5 数字のブロック
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-07 16:17:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 238 ms / 5,000 ms
コード長 623 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 58,976 KB
最終ジャッジ日時 2024-11-17 22:33:55
合計ジャッジ時間 8,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,148 KB
testcase_01 AC 110 ms
53,780 KB
testcase_02 AC 99 ms
53,280 KB
testcase_03 AC 206 ms
58,000 KB
testcase_04 AC 182 ms
57,348 KB
testcase_05 AC 219 ms
58,176 KB
testcase_06 AC 193 ms
58,232 KB
testcase_07 AC 180 ms
57,436 KB
testcase_08 AC 208 ms
58,296 KB
testcase_09 AC 171 ms
56,664 KB
testcase_10 AC 215 ms
58,280 KB
testcase_11 AC 190 ms
57,776 KB
testcase_12 AC 210 ms
58,352 KB
testcase_13 AC 211 ms
58,404 KB
testcase_14 AC 120 ms
53,976 KB
testcase_15 AC 128 ms
54,016 KB
testcase_16 AC 221 ms
58,580 KB
testcase_17 AC 233 ms
58,744 KB
testcase_18 AC 228 ms
58,944 KB
testcase_19 AC 238 ms
58,976 KB
testcase_20 AC 100 ms
52,968 KB
testcase_21 AC 107 ms
53,880 KB
testcase_22 AC 108 ms
53,944 KB
testcase_23 AC 109 ms
54,092 KB
testcase_24 AC 127 ms
53,940 KB
testcase_25 AC 150 ms
54,216 KB
testcase_26 AC 111 ms
54,088 KB
testcase_27 AC 109 ms
53,936 KB
testcase_28 AC 111 ms
53,684 KB
testcase_29 AC 186 ms
57,188 KB
testcase_30 AC 170 ms
56,528 KB
testcase_31 AC 98 ms
53,244 KB
testcase_32 AC 102 ms
53,060 KB
testcase_33 AC 123 ms
53,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int l = koko.nextInt();
        int n = koko.nextInt();
        int[] w = new int[n];
        for(int i=0; i<n; i++){
            w[i] = koko.nextInt();
        }
        Arrays.sort(w);
        int wir = l;
        int count = 0;
        for(int i=0; i<n;i++){
            if(wir>=w[i]){
                wir = wir - w[i];
                count++;
            }else{
                break;
            }
        }
        System.out.println(count);
        
    }
}
0