結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,204 KB
testcase_01 AC 133 ms
54,248 KB
testcase_02 AC 134 ms
53,832 KB
testcase_03 AC 258 ms
57,928 KB
testcase_04 AC 237 ms
57,716 KB
testcase_05 AC 273 ms
58,604 KB
testcase_06 AC 247 ms
58,004 KB
testcase_07 AC 232 ms
57,992 KB
testcase_08 AC 247 ms
58,536 KB
testcase_09 AC 206 ms
57,104 KB
testcase_10 AC 281 ms
58,872 KB
testcase_11 AC 230 ms
57,732 KB
testcase_12 AC 250 ms
58,432 KB
testcase_13 AC 270 ms
58,412 KB
testcase_14 AC 146 ms
54,196 KB
testcase_15 AC 166 ms
54,020 KB
testcase_16 AC 273 ms
58,800 KB
testcase_17 AC 289 ms
59,180 KB
testcase_18 AC 288 ms
59,020 KB
testcase_19 AC 294 ms
59,092 KB
testcase_20 AC 133 ms
53,932 KB
testcase_21 AC 132 ms
54,188 KB
testcase_22 AC 132 ms
54,236 KB
testcase_23 AC 134 ms
54,284 KB
testcase_24 AC 167 ms
53,948 KB
testcase_25 AC 180 ms
54,504 KB
testcase_26 AC 132 ms
54,176 KB
testcase_27 AC 130 ms
54,144 KB
testcase_28 AC 119 ms
53,156 KB
testcase_29 AC 235 ms
57,576 KB
testcase_30 AC 205 ms
56,864 KB
testcase_31 AC 131 ms
54,020 KB
testcase_32 AC 133 ms
53,928 KB
testcase_33 AC 131 ms
53,928 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