結果

問題 No.5 数字のブロック
ユーザー skkbevskkbev
提出日時 2018-12-03 22:48:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 764 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 75,948 KB
実行使用メモリ 47,904 KB
最終ジャッジ日時 2024-04-29 10:07:09
合計ジャッジ時間 9,389 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,628 KB
testcase_01 AC 127 ms
41,376 KB
testcase_02 AC 126 ms
41,412 KB
testcase_03 AC 254 ms
46,468 KB
testcase_04 AC 227 ms
46,040 KB
testcase_05 AC 261 ms
47,092 KB
testcase_06 AC 238 ms
46,644 KB
testcase_07 AC 223 ms
46,292 KB
testcase_08 AC 237 ms
46,860 KB
testcase_09 AC 203 ms
44,228 KB
testcase_10 AC 268 ms
47,740 KB
testcase_11 AC 221 ms
46,140 KB
testcase_12 AC 236 ms
46,916 KB
testcase_13 AC 237 ms
47,092 KB
testcase_14 AC 134 ms
41,656 KB
testcase_15 AC 147 ms
41,544 KB
testcase_16 AC 261 ms
47,168 KB
testcase_17 AC 270 ms
47,904 KB
testcase_18 AC 263 ms
47,712 KB
testcase_19 AC 292 ms
47,712 KB
testcase_20 AC 126 ms
41,132 KB
testcase_21 AC 125 ms
41,572 KB
testcase_22 AC 125 ms
41,628 KB
testcase_23 AC 125 ms
41,260 KB
testcase_24 AC 161 ms
41,776 KB
testcase_25 AC 173 ms
42,276 KB
testcase_26 AC 114 ms
41,080 KB
testcase_27 AC 125 ms
41,320 KB
testcase_28 AC 126 ms
41,500 KB
testcase_29 AC 232 ms
46,072 KB
testcase_30 AC 199 ms
44,124 KB
testcase_31 AC 123 ms
41,136 KB
testcase_32 AC 123 ms
41,480 KB
testcase_33 AC 124 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        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 w = 0;
        for (int i = 0; i < n; i++) {
            sum += list.get(i);
                if (sum <= l) {
                    w++;
                } else {
                    break;
                }
        }
        System.out.println(w);
    }
}
0