結果

問題 No.5 数字のブロック
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 22:13:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 628 bytes
コンパイル時間 3,434 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 59,096 KB
最終ジャッジ日時 2024-11-18 11:49:14
合計ジャッジ時間 10,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,208 KB
testcase_01 AC 104 ms
40,428 KB
testcase_02 AC 103 ms
39,988 KB
testcase_03 AC 218 ms
46,680 KB
testcase_04 AC 199 ms
45,784 KB
testcase_05 AC 232 ms
47,412 KB
testcase_06 AC 209 ms
46,112 KB
testcase_07 AC 204 ms
45,960 KB
testcase_08 AC 216 ms
47,008 KB
testcase_09 AC 177 ms
43,688 KB
testcase_10 AC 238 ms
47,480 KB
testcase_11 AC 192 ms
46,372 KB
testcase_12 AC 234 ms
47,636 KB
testcase_13 AC 235 ms
58,664 KB
testcase_14 AC 131 ms
54,308 KB
testcase_15 AC 137 ms
54,608 KB
testcase_16 AC 229 ms
58,944 KB
testcase_17 AC 247 ms
58,684 KB
testcase_18 AC 239 ms
58,896 KB
testcase_19 AC 254 ms
59,096 KB
testcase_20 AC 106 ms
53,156 KB
testcase_21 AC 118 ms
54,012 KB
testcase_22 AC 110 ms
53,196 KB
testcase_23 AC 123 ms
54,144 KB
testcase_24 AC 149 ms
54,396 KB
testcase_25 AC 164 ms
54,312 KB
testcase_26 AC 118 ms
54,020 KB
testcase_27 AC 113 ms
54,564 KB
testcase_28 AC 120 ms
54,072 KB
testcase_29 AC 207 ms
57,600 KB
testcase_30 AC 187 ms
56,716 KB
testcase_31 AC 118 ms
54,032 KB
testcase_32 AC 118 ms
54,076 KB
testcase_33 AC 112 ms
52,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No5 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int length = s.nextInt();
        int count = s.nextInt();
        int[] arr = new int[count];
        for (int i = 0; i < count; i++) {
            arr[i] = s.nextInt();
        }
        Arrays.sort(arr);
        int sum = 0;
        for (int i = 0; i < count; i++) {
            sum += arr[i];
            if (sum > length) {
                System.out.println(i);
                return;
            }
        }
        System.out.println(count);
    }
}
0