結果

問題 No.5 数字のブロック
ユーザー atkrymatkrym
提出日時 2016-10-13 12:33:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 76,436 KB
実行使用メモリ 59,164 KB
最終ジャッジ日時 2024-11-18 09:54:09
合計ジャッジ時間 9,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,120 KB
testcase_01 AC 125 ms
53,940 KB
testcase_02 AC 112 ms
52,740 KB
testcase_03 AC 242 ms
58,672 KB
testcase_04 AC 230 ms
57,416 KB
testcase_05 AC 259 ms
59,164 KB
testcase_06 AC 232 ms
58,108 KB
testcase_07 AC 220 ms
57,672 KB
testcase_08 AC 226 ms
58,308 KB
testcase_09 AC 196 ms
56,544 KB
testcase_10 AC 251 ms
58,840 KB
testcase_11 AC 216 ms
57,536 KB
testcase_12 AC 232 ms
58,588 KB
testcase_13 AC 253 ms
58,664 KB
testcase_14 AC 139 ms
54,196 KB
testcase_15 AC 153 ms
54,224 KB
testcase_16 AC 246 ms
58,408 KB
testcase_17 AC 269 ms
58,968 KB
testcase_18 AC 269 ms
58,896 KB
testcase_19 AC 260 ms
58,904 KB
testcase_20 AC 120 ms
54,020 KB
testcase_21 AC 119 ms
53,084 KB
testcase_22 AC 120 ms
54,156 KB
testcase_23 AC 117 ms
53,012 KB
testcase_24 AC 155 ms
54,252 KB
testcase_25 AC 173 ms
54,312 KB
testcase_26 AC 111 ms
52,944 KB
testcase_27 AC 119 ms
53,972 KB
testcase_28 AC 124 ms
54,300 KB
testcase_29 AC 211 ms
57,504 KB
testcase_30 AC 200 ms
57,060 KB
testcase_31 AC 122 ms
54,012 KB
testcase_32 AC 107 ms
53,020 KB
testcase_33 AC 107 ms
53,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int l = sc.nextInt();
        int n = sc.nextInt();
        List<Integer> list = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            list.add(sc.nextInt());
        }
        
        Collections.sort(list);
        
        int sum = 0;
        int ret = 0;
        for (Integer i : list) {
            sum += i;
            if (sum > l) {
                break;
            }
            ret++;
        }
        
        System.out.println(ret);
    }
}
0