結果

問題 No.5 数字のブロック
ユーザー hippolover02hippolover02
提出日時 2022-07-23 10:43:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 73,920 KB
実行使用メモリ 59,224 KB
最終ジャッジ日時 2024-07-04 21:43:17
合計ジャッジ時間 9,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,076 KB
testcase_01 AC 130 ms
54,120 KB
testcase_02 WA -
testcase_03 AC 236 ms
58,108 KB
testcase_04 AC 215 ms
57,212 KB
testcase_05 WA -
testcase_06 AC 222 ms
57,864 KB
testcase_07 AC 221 ms
57,656 KB
testcase_08 AC 237 ms
58,272 KB
testcase_09 AC 194 ms
56,776 KB
testcase_10 AC 240 ms
58,724 KB
testcase_11 AC 211 ms
57,184 KB
testcase_12 AC 233 ms
58,308 KB
testcase_13 AC 246 ms
58,484 KB
testcase_14 AC 136 ms
53,920 KB
testcase_15 WA -
testcase_16 AC 247 ms
58,728 KB
testcase_17 AC 253 ms
59,224 KB
testcase_18 AC 257 ms
58,748 KB
testcase_19 AC 268 ms
58,812 KB
testcase_20 AC 130 ms
54,216 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 130 ms
54,196 KB
testcase_24 AC 152 ms
54,424 KB
testcase_25 AC 181 ms
54,304 KB
testcase_26 AC 113 ms
52,924 KB
testcase_27 AC 127 ms
54,304 KB
testcase_28 AC 123 ms
53,952 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 128 ms
54,148 KB
testcase_32 AC 127 ms
54,456 KB
testcase_33 AC 125 ms
54,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int box = sc.nextInt();
        int num = sc.nextInt();
        int[] width = new int[num];
        
        for(int i=0; i<num; i++){
            width[i] = sc.nextInt();
        }
        Arrays.sort(width);
        int tmp = 0;
        int r = 0;
        
        for(int n : width){
            tmp += n;
            if(box > tmp){
                r++;
            } else {
                break;
            }
        }
        System.out.println(r);
    }
}
0