結果

問題 No.5 数字のブロック
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-11 22:46:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 740 bytes
コンパイル時間 3,214 ms
コンパイル使用メモリ 76,456 KB
実行使用メモリ 47,840 KB
最終ジャッジ日時 2024-11-18 12:24:22
合計ジャッジ時間 10,306 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,372 KB
testcase_01 AC 134 ms
41,504 KB
testcase_02 AC 129 ms
41,560 KB
testcase_03 AC 236 ms
46,404 KB
testcase_04 AC 213 ms
45,424 KB
testcase_05 AC 234 ms
46,484 KB
testcase_06 AC 226 ms
46,584 KB
testcase_07 AC 222 ms
46,148 KB
testcase_08 AC 226 ms
46,696 KB
testcase_09 AC 186 ms
43,852 KB
testcase_10 AC 245 ms
47,820 KB
testcase_11 AC 212 ms
46,404 KB
testcase_12 AC 233 ms
46,420 KB
testcase_13 AC 233 ms
47,348 KB
testcase_14 AC 133 ms
41,684 KB
testcase_15 AC 142 ms
42,112 KB
testcase_16 AC 246 ms
47,064 KB
testcase_17 AC 254 ms
47,840 KB
testcase_18 AC 260 ms
47,764 KB
testcase_19 AC 260 ms
47,712 KB
testcase_20 AC 111 ms
41,444 KB
testcase_21 AC 127 ms
41,556 KB
testcase_22 AC 105 ms
41,328 KB
testcase_23 AC 114 ms
41,208 KB
testcase_24 AC 157 ms
41,680 KB
testcase_25 AC 167 ms
42,184 KB
testcase_26 AC 125 ms
41,636 KB
testcase_27 AC 124 ms
41,300 KB
testcase_28 AC 126 ms
41,196 KB
testcase_29 AC 210 ms
45,536 KB
testcase_30 AC 192 ms
44,124 KB
testcase_31 AC 118 ms
41,716 KB
testcase_32 AC 121 ms
41,588 KB
testcase_33 AC 127 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.Arrays;

public class NumBlocks{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);

        int L = sc.nextInt();
        int N = sc.nextInt();

        int[] W = new int[N];
        for(int i = 0; i < N; i++){
            W[i] = sc.nextInt();
        }
        Arrays.sort(W);
        int blocks_width = 0;
        int num_blocks = 0;
        for(int i = 0; i < N; i++){
            if(blocks_width + W[i] > L){
                break;
            }else{
                blocks_width += W[i];
                num_blocks++;
            }
        }
        System.out.println(num_blocks);
    }
}
0