結果

問題 No.5 数字のブロック
ユーザー 101000010101000010
提出日時 2017-05-17 16:26:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 4,427 ms
コンパイル使用メモリ 79,312 KB
実行使用メモリ 43,912 KB
最終ジャッジ日時 2024-11-18 11:09:47
合計ジャッジ時間 10,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,024 KB
testcase_01 AC 135 ms
41,184 KB
testcase_02 AC 136 ms
41,372 KB
testcase_03 AC 201 ms
42,684 KB
testcase_04 AC 186 ms
41,704 KB
testcase_05 AC 213 ms
43,036 KB
testcase_06 AC 198 ms
42,460 KB
testcase_07 AC 193 ms
42,136 KB
testcase_08 AC 197 ms
42,396 KB
testcase_09 AC 182 ms
41,492 KB
testcase_10 AC 213 ms
43,116 KB
testcase_11 AC 182 ms
41,920 KB
testcase_12 AC 206 ms
42,708 KB
testcase_13 AC 211 ms
42,992 KB
testcase_14 AC 137 ms
41,540 KB
testcase_15 AC 140 ms
41,536 KB
testcase_16 AC 214 ms
43,364 KB
testcase_17 AC 228 ms
43,912 KB
testcase_18 AC 215 ms
43,336 KB
testcase_19 AC 212 ms
43,660 KB
testcase_20 AC 133 ms
41,120 KB
testcase_21 AC 135 ms
41,492 KB
testcase_22 AC 134 ms
41,232 KB
testcase_23 AC 133 ms
41,176 KB
testcase_24 AC 141 ms
41,056 KB
testcase_25 AC 154 ms
41,292 KB
testcase_26 AC 134 ms
41,312 KB
testcase_27 AC 138 ms
41,440 KB
testcase_28 AC 136 ms
41,484 KB
testcase_29 AC 186 ms
41,952 KB
testcase_30 AC 183 ms
41,580 KB
testcase_31 AC 137 ms
41,048 KB
testcase_32 AC 136 ms
41,244 KB
testcase_33 AC 136 ms
41,496 KB
権限があれば一括ダウンロードができます

ソースコード

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(count == boxS.length)break;
        }
        return count;
    }
}
0