結果

問題 No.5 数字のブロック
ユーザー syusyu
提出日時 2020-08-25 21:01:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 624 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 48,092 KB
最終ジャッジ日時 2024-11-06 11:42:16
合計ジャッジ時間 10,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,496 KB
testcase_01 AC 134 ms
41,328 KB
testcase_02 WA -
testcase_03 AC 250 ms
46,816 KB
testcase_04 AC 225 ms
45,680 KB
testcase_05 AC 255 ms
46,432 KB
testcase_06 AC 236 ms
46,448 KB
testcase_07 AC 226 ms
45,916 KB
testcase_08 AC 243 ms
46,964 KB
testcase_09 AC 199 ms
43,244 KB
testcase_10 AC 263 ms
47,604 KB
testcase_11 AC 231 ms
46,272 KB
testcase_12 AC 253 ms
47,064 KB
testcase_13 AC 254 ms
46,684 KB
testcase_14 AC 148 ms
41,856 KB
testcase_15 AC 156 ms
42,032 KB
testcase_16 AC 259 ms
47,076 KB
testcase_17 AC 268 ms
48,092 KB
testcase_18 AC 268 ms
47,780 KB
testcase_19 AC 276 ms
47,668 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 132 ms
41,260 KB
testcase_24 AC 167 ms
41,788 KB
testcase_25 AC 182 ms
41,828 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 222 ms
46,012 KB
testcase_30 AC 209 ms
43,608 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
            count++;
            if(boxWidth<0){
                break;
            }
        }
        System.out.println(count-1);
    }
}
0