結果

問題 No.5 数字のブロック
ユーザー syusyu
提出日時 2020-08-25 22:56:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 3,282 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 59,012 KB
最終ジャッジ日時 2024-11-06 11:51:25
合計ジャッジ時間 10,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,216 KB
testcase_01 AC 137 ms
54,036 KB
testcase_02 AC 136 ms
54,500 KB
testcase_03 AC 248 ms
58,048 KB
testcase_04 AC 227 ms
57,380 KB
testcase_05 AC 257 ms
58,480 KB
testcase_06 AC 236 ms
57,880 KB
testcase_07 AC 228 ms
57,320 KB
testcase_08 AC 243 ms
58,676 KB
testcase_09 AC 210 ms
56,528 KB
testcase_10 AC 259 ms
58,460 KB
testcase_11 AC 230 ms
58,144 KB
testcase_12 AC 252 ms
58,448 KB
testcase_13 AC 255 ms
58,400 KB
testcase_14 AC 149 ms
54,408 KB
testcase_15 AC 157 ms
54,112 KB
testcase_16 AC 265 ms
58,820 KB
testcase_17 AC 274 ms
58,736 KB
testcase_18 AC 271 ms
59,012 KB
testcase_19 AC 286 ms
58,676 KB
testcase_20 AC 140 ms
54,076 KB
testcase_21 AC 141 ms
53,832 KB
testcase_22 AC 143 ms
54,264 KB
testcase_23 AC 141 ms
53,844 KB
testcase_24 AC 167 ms
54,168 KB
testcase_25 AC 177 ms
54,524 KB
testcase_26 AC 139 ms
53,956 KB
testcase_27 AC 134 ms
53,788 KB
testcase_28 AC 135 ms
54,032 KB
testcase_29 AC 226 ms
57,444 KB
testcase_30 AC 210 ms
56,620 KB
testcase_31 AC 139 ms
53,760 KB
testcase_32 AC 139 ms
53,892 KB
testcase_33 AC 137 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        int boxWidth=sc.nextInt();
        int n=sc.nextInt();
        
        int[] blocks=new int[n];
        for(int i=0;i<n;i++){
            blocks[i]=sc.nextInt();
        }
        Arrays.sort(blocks);
        ///System.out.println(Arrays.toString(blocks));
        int count=0;
        for(int block:blocks){
            boxWidth-=block;
            if(boxWidth<0){
                break;
            }
            count++;
        }
        System.out.println(count);
    }
}
0