結果

問題 No.5 数字のブロック
ユーザー 101000010101000010
提出日時 2017-05-17 16:22:39
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 880 bytes
コンパイル時間 2,982 ms
コンパイル使用メモリ 76,496 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-09-17 20:59:27
合計ジャッジ時間 8,821 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,876 KB
testcase_01 AC 115 ms
41,276 KB
testcase_02 RE -
testcase_03 AC 152 ms
42,468 KB
testcase_04 AC 147 ms
41,604 KB
testcase_05 AC 188 ms
43,464 KB
testcase_06 AC 151 ms
42,396 KB
testcase_07 AC 160 ms
42,256 KB
testcase_08 AC 165 ms
42,392 KB
testcase_09 AC 128 ms
41,572 KB
testcase_10 AC 179 ms
43,484 KB
testcase_11 AC 160 ms
41,980 KB
testcase_12 AC 167 ms
42,916 KB
testcase_13 AC 175 ms
43,284 KB
testcase_14 AC 106 ms
41,296 KB
testcase_15 AC 113 ms
41,276 KB
testcase_16 AC 175 ms
43,120 KB
testcase_17 AC 179 ms
44,088 KB
testcase_18 AC 186 ms
43,272 KB
testcase_19 AC 189 ms
43,576 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 105 ms
41,396 KB
testcase_24 AC 112 ms
41,236 KB
testcase_25 AC 111 ms
41,392 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 152 ms
41,940 KB
testcase_30 AC 155 ms
41,472 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No005 {

    public static void main(String[] args) {
        int BOX_L_SIZE;
        int N;
        int[] BOX_S;
        
        Scanner sc = new Scanner(System.in);
        BOX_L_SIZE = Integer.parseInt(sc.nextLine());
        N = Integer.parseInt(sc.nextLine());
        BOX_S = new int[N];
        String str = sc.nextLine();
        String[] inputs = str.split(" ");
        for(int i=0; i<N; i++){
            BOX_S[i] = Integer.parseInt(inputs[i]);
        }
        
        System.out.println(countBox(BOX_L_SIZE, BOX_S));
    }
    static int countBox(int boxSize, int[] boxS){
        int count = 0;
        int capaBox = boxSize;
        
        Arrays.sort(boxS);
        while(boxS[count] <= capaBox){
            capaBox -= boxS[count];
            count++;
        }
        return count;
    }
}
0