結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,440 KB
testcase_01 AC 113 ms
41,640 KB
testcase_02 AC 100 ms
41,364 KB
testcase_03 AC 166 ms
42,620 KB
testcase_04 AC 155 ms
42,072 KB
testcase_05 AC 180 ms
43,004 KB
testcase_06 AC 176 ms
42,668 KB
testcase_07 AC 162 ms
41,780 KB
testcase_08 AC 173 ms
42,436 KB
testcase_09 AC 148 ms
41,548 KB
testcase_10 AC 174 ms
43,428 KB
testcase_11 AC 167 ms
41,920 KB
testcase_12 AC 172 ms
42,668 KB
testcase_13 AC 177 ms
43,516 KB
testcase_14 AC 100 ms
41,308 KB
testcase_15 AC 126 ms
41,528 KB
testcase_16 AC 193 ms
43,496 KB
testcase_17 AC 194 ms
43,856 KB
testcase_18 AC 182 ms
43,512 KB
testcase_19 AC 181 ms
43,256 KB
testcase_20 RE -
testcase_21 AC 112 ms
41,180 KB
testcase_22 AC 95 ms
40,048 KB
testcase_23 AC 111 ms
41,188 KB
testcase_24 AC 117 ms
40,212 KB
testcase_25 AC 116 ms
41,384 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 166 ms
41,460 KB
testcase_30 AC 156 ms
41,596 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++;
            if(capaBox == 0)break;
        }
        return count;
    }
}
0