結果

問題 No.5 数字のブロック
ユーザー GrenacheGrenache
提出日時 2015-06-30 20:22:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 566 bytes
コンパイル時間 4,019 ms
コンパイル使用メモリ 75,336 KB
実行使用メモリ 47,624 KB
最終ジャッジ日時 2024-11-17 22:59:38
合計ジャッジ時間 10,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,240 KB
testcase_01 AC 117 ms
41,376 KB
testcase_02 AC 119 ms
41,204 KB
testcase_03 AC 220 ms
47,008 KB
testcase_04 AC 207 ms
45,636 KB
testcase_05 AC 239 ms
47,372 KB
testcase_06 AC 217 ms
46,292 KB
testcase_07 AC 212 ms
46,092 KB
testcase_08 AC 224 ms
46,964 KB
testcase_09 AC 183 ms
43,480 KB
testcase_10 AC 232 ms
47,288 KB
testcase_11 AC 207 ms
45,984 KB
testcase_12 AC 223 ms
46,612 KB
testcase_13 AC 232 ms
47,292 KB
testcase_14 AC 120 ms
40,732 KB
testcase_15 AC 138 ms
42,056 KB
testcase_16 AC 232 ms
47,120 KB
testcase_17 AC 247 ms
47,624 KB
testcase_18 AC 248 ms
47,580 KB
testcase_19 AC 242 ms
47,316 KB
testcase_20 AC 115 ms
40,952 KB
testcase_21 AC 120 ms
41,416 KB
testcase_22 AC 121 ms
41,068 KB
testcase_23 AC 115 ms
41,540 KB
testcase_24 AC 150 ms
41,584 KB
testcase_25 AC 147 ms
42,160 KB
testcase_26 AC 119 ms
41,540 KB
testcase_27 AC 118 ms
41,460 KB
testcase_28 AC 123 ms
41,180 KB
testcase_29 AC 210 ms
45,768 KB
testcase_30 AC 192 ms
44,040 KB
testcase_31 AC 118 ms
41,488 KB
testcase_32 AC 117 ms
40,920 KB
testcase_33 AC 112 ms
40,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class Main_yukicoder5 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int l = sc.nextInt();
        int n = sc.nextInt();
        int[] w = new int[n];
        for (int i = 0; i < n; i++) {
        	w[i] = sc.nextInt();
        }
        
        Arrays.sort(w);
        int ret = 0;
        for (int i = 0; i < n && l >= w[i]; i++) {
        	l -= w[i];
        	ret++;
        }

        System.out.println(ret);
        
        sc.close();
    }
}
0