結果

問題 No.5 数字のブロック
ユーザー abcabc
提出日時 2016-10-16 14:02:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 774 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 59,184 KB
最終ジャッジ日時 2024-11-18 09:57:50
合計ジャッジ時間 8,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,892 KB
testcase_01 AC 117 ms
54,148 KB
testcase_02 AC 114 ms
54,056 KB
testcase_03 AC 221 ms
58,068 KB
testcase_04 AC 200 ms
57,372 KB
testcase_05 AC 225 ms
58,576 KB
testcase_06 AC 204 ms
58,048 KB
testcase_07 AC 203 ms
57,768 KB
testcase_08 AC 215 ms
58,508 KB
testcase_09 AC 178 ms
57,148 KB
testcase_10 AC 222 ms
58,952 KB
testcase_11 AC 201 ms
57,708 KB
testcase_12 AC 224 ms
58,388 KB
testcase_13 AC 231 ms
58,604 KB
testcase_14 AC 126 ms
54,332 KB
testcase_15 AC 138 ms
54,324 KB
testcase_16 AC 229 ms
58,892 KB
testcase_17 AC 236 ms
58,772 KB
testcase_18 AC 230 ms
59,184 KB
testcase_19 AC 245 ms
59,048 KB
testcase_20 AC 115 ms
53,988 KB
testcase_21 AC 114 ms
54,292 KB
testcase_22 AC 105 ms
53,132 KB
testcase_23 AC 112 ms
54,088 KB
testcase_24 AC 151 ms
54,348 KB
testcase_25 AC 161 ms
54,420 KB
testcase_26 AC 118 ms
54,164 KB
testcase_27 AC 120 ms
54,112 KB
testcase_28 AC 124 ms
54,100 KB
testcase_29 AC 193 ms
57,672 KB
testcase_30 AC 177 ms
56,948 KB
testcase_31 AC 116 ms
53,900 KB
testcase_32 AC 119 ms
54,224 KB
testcase_33 AC 104 ms
53,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int widthBox = sc.nextInt();
        int numBlock = sc.nextInt();

        int[] widthBlocks = new int[numBlock];

        for (int i = 0; i < numBlock; i++) {
            widthBlocks[i] = sc.nextInt();
        }

        Arrays.sort(widthBlocks);

        int blockCount = 0;
        int widthBlockTotal = 0;

        for (int i = 0; i < numBlock; i++) {

            widthBlockTotal += widthBlocks[i];

            if (widthBlockTotal <= widthBox) {
                blockCount++;
            } else {
                break;
            }

        }

        System.out.println(blockCount);

    }

}
0