結果

問題 No.5 数字のブロック
ユーザー Flere0114Flere0114
提出日時 2016-02-24 13:11:23
言語 Java
(openjdk 23)
結果
AC  
実行時間 277 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 3,492 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 59,048 KB
最終ジャッジ日時 2024-11-18 08:17:45
合計ジャッジ時間 11,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,020 KB
testcase_01 AC 139 ms
53,980 KB
testcase_02 AC 136 ms
53,980 KB
testcase_03 AC 250 ms
57,812 KB
testcase_04 AC 225 ms
57,460 KB
testcase_05 AC 264 ms
58,800 KB
testcase_06 AC 236 ms
57,904 KB
testcase_07 AC 231 ms
57,708 KB
testcase_08 AC 239 ms
57,736 KB
testcase_09 AC 218 ms
56,844 KB
testcase_10 AC 256 ms
58,828 KB
testcase_11 AC 223 ms
57,704 KB
testcase_12 AC 241 ms
58,312 KB
testcase_13 AC 256 ms
58,460 KB
testcase_14 AC 148 ms
54,064 KB
testcase_15 AC 156 ms
54,344 KB
testcase_16 AC 260 ms
59,048 KB
testcase_17 AC 270 ms
58,564 KB
testcase_18 AC 273 ms
58,860 KB
testcase_19 AC 277 ms
58,848 KB
testcase_20 AC 138 ms
53,988 KB
testcase_21 AC 137 ms
54,252 KB
testcase_22 AC 136 ms
54,156 KB
testcase_23 AC 137 ms
54,184 KB
testcase_24 AC 170 ms
54,332 KB
testcase_25 AC 183 ms
54,412 KB
testcase_26 AC 135 ms
53,884 KB
testcase_27 AC 135 ms
53,872 KB
testcase_28 AC 135 ms
54,156 KB
testcase_29 AC 223 ms
57,352 KB
testcase_30 AC 210 ms
56,696 KB
testcase_31 AC 135 ms
53,920 KB
testcase_32 AC 135 ms
54,108 KB
testcase_33 AC 137 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No5 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int l, n, sum = 0, ans = 0;
        l = sc.nextInt();
        n = sc.nextInt();
        int[] w = new int[n];
        for (int i = 0; i < n; i++) {
            w[i] = sc.nextInt();
        }
        Arrays.sort(w);

        for (int i = 0; i < n; i++) {
            sum += w[i];
            if(sum > l){
                System.out.println(i);
                return;
            }
        }
        System.out.println(n);
    }
}
0