結果

問題 No.5 数字のブロック
ユーザー asf asfasf asf
提出日時 2020-05-14 07:04:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 3,646 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 47,928 KB
最終ジャッジ日時 2024-09-14 18:55:54
合計ジャッジ時間 11,337 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,144 KB
testcase_01 AC 130 ms
41,304 KB
testcase_02 AC 130 ms
41,380 KB
testcase_03 AC 244 ms
46,328 KB
testcase_04 AC 214 ms
45,808 KB
testcase_05 AC 263 ms
47,284 KB
testcase_06 AC 236 ms
46,432 KB
testcase_07 AC 229 ms
45,480 KB
testcase_08 AC 247 ms
46,520 KB
testcase_09 AC 208 ms
43,264 KB
testcase_10 AC 260 ms
47,080 KB
testcase_11 AC 228 ms
46,092 KB
testcase_12 AC 241 ms
47,260 KB
testcase_13 AC 260 ms
47,204 KB
testcase_14 AC 144 ms
41,888 KB
testcase_15 AC 155 ms
41,784 KB
testcase_16 AC 262 ms
46,560 KB
testcase_17 AC 268 ms
47,128 KB
testcase_18 AC 264 ms
46,944 KB
testcase_19 AC 278 ms
47,928 KB
testcase_20 AC 132 ms
41,472 KB
testcase_21 AC 137 ms
41,356 KB
testcase_22 AC 136 ms
41,176 KB
testcase_23 AC 133 ms
41,500 KB
testcase_24 AC 169 ms
41,564 KB
testcase_25 AC 186 ms
42,196 KB
testcase_26 AC 132 ms
41,384 KB
testcase_27 AC 138 ms
41,612 KB
testcase_28 AC 137 ms
41,472 KB
testcase_29 AC 226 ms
45,732 KB
testcase_30 AC 208 ms
43,692 KB
testcase_31 AC 134 ms
41,224 KB
testcase_32 AC 133 ms
41,176 KB
testcase_33 AC 133 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Solution {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a, b;
        a = sc.nextInt();
        b = sc.nextInt();
        int[] c = new int[b];
        for (int i = 0; i < b; i++) {
            c[i] = sc.nextInt();
        }
        Arrays.sort(c);
        int sum = 0;
        int count = 0;
        for (int i = 0; i < b; i++) {
            if (sum + c[i] <= a) {
                sum += c[i];
                count++;
            }
        }
        System.out.println(count);
    }
}
0