結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,504 KB
testcase_01 AC 132 ms
41,380 KB
testcase_02 WA -
testcase_03 AC 245 ms
46,124 KB
testcase_04 AC 217 ms
45,728 KB
testcase_05 WA -
testcase_06 AC 224 ms
46,688 KB
testcase_07 AC 222 ms
45,872 KB
testcase_08 AC 240 ms
45,768 KB
testcase_09 AC 204 ms
43,352 KB
testcase_10 AC 254 ms
47,752 KB
testcase_11 AC 229 ms
46,324 KB
testcase_12 AC 244 ms
46,744 KB
testcase_13 AC 249 ms
47,408 KB
testcase_14 AC 144 ms
41,928 KB
testcase_15 WA -
testcase_16 AC 255 ms
46,532 KB
testcase_17 AC 275 ms
47,472 KB
testcase_18 AC 275 ms
47,864 KB
testcase_19 AC 273 ms
47,560 KB
testcase_20 AC 131 ms
41,088 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 131 ms
41,436 KB
testcase_24 AC 153 ms
41,772 KB
testcase_25 AC 169 ms
41,860 KB
testcase_26 AC 129 ms
41,140 KB
testcase_27 AC 130 ms
41,136 KB
testcase_28 AC 129 ms
41,052 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 130 ms
41,364 KB
testcase_32 AC 132 ms
41,188 KB
testcase_33 AC 129 ms
41,332 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