結果

問題 No.5 数字のブロック
ユーザー tentententen
提出日時 2020-11-10 09:47:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 519 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 48,300 KB
最終ジャッジ日時 2024-07-22 17:15:32
合計ジャッジ時間 10,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,172 KB
testcase_01 AC 131 ms
41,564 KB
testcase_02 AC 133 ms
41,676 KB
testcase_03 AC 246 ms
47,316 KB
testcase_04 AC 221 ms
45,864 KB
testcase_05 AC 251 ms
46,604 KB
testcase_06 AC 235 ms
46,440 KB
testcase_07 AC 227 ms
46,032 KB
testcase_08 AC 247 ms
46,760 KB
testcase_09 AC 211 ms
43,856 KB
testcase_10 AC 250 ms
46,556 KB
testcase_11 AC 220 ms
45,784 KB
testcase_12 AC 245 ms
47,540 KB
testcase_13 AC 257 ms
47,204 KB
testcase_14 AC 141 ms
41,508 KB
testcase_15 AC 160 ms
41,544 KB
testcase_16 AC 262 ms
46,968 KB
testcase_17 AC 268 ms
48,300 KB
testcase_18 AC 261 ms
47,124 KB
testcase_19 AC 276 ms
47,592 KB
testcase_20 AC 132 ms
41,260 KB
testcase_21 AC 131 ms
41,692 KB
testcase_22 AC 129 ms
41,380 KB
testcase_23 AC 129 ms
41,440 KB
testcase_24 AC 155 ms
41,516 KB
testcase_25 AC 179 ms
42,212 KB
testcase_26 AC 125 ms
41,308 KB
testcase_27 AC 134 ms
41,544 KB
testcase_28 AC 134 ms
41,672 KB
testcase_29 AC 218 ms
45,616 KB
testcase_30 AC 206 ms
44,012 KB
testcase_31 AC 127 ms
41,216 KB
testcase_32 AC 126 ms
41,304 KB
testcase_33 AC 135 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int length = sc.nextInt();
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        Arrays.sort(arr);
        int count = 0;
        while (count < n && arr[count] <= length) {
            length -= arr[count];
            count++;
        }
        System.out.println(count);
    }
}
0