結果

問題 No.5 数字のブロック
ユーザー hippolover02hippolover02
提出日時 2022-07-23 10:44:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 47,828 KB
最終ジャッジ日時 2024-07-04 21:44:54
合計ジャッジ時間 9,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,432 KB
testcase_01 AC 126 ms
41,288 KB
testcase_02 AC 125 ms
41,704 KB
testcase_03 AC 230 ms
46,176 KB
testcase_04 AC 207 ms
45,600 KB
testcase_05 AC 241 ms
47,340 KB
testcase_06 AC 215 ms
46,560 KB
testcase_07 AC 213 ms
45,856 KB
testcase_08 AC 221 ms
46,392 KB
testcase_09 AC 193 ms
43,900 KB
testcase_10 AC 236 ms
46,860 KB
testcase_11 AC 218 ms
45,848 KB
testcase_12 AC 241 ms
46,824 KB
testcase_13 AC 249 ms
47,232 KB
testcase_14 AC 134 ms
41,768 KB
testcase_15 AC 160 ms
41,696 KB
testcase_16 AC 250 ms
46,504 KB
testcase_17 AC 258 ms
47,500 KB
testcase_18 AC 248 ms
47,800 KB
testcase_19 AC 267 ms
47,828 KB
testcase_20 AC 130 ms
41,560 KB
testcase_21 AC 116 ms
41,536 KB
testcase_22 AC 129 ms
41,348 KB
testcase_23 AC 133 ms
41,216 KB
testcase_24 AC 163 ms
41,924 KB
testcase_25 AC 184 ms
41,972 KB
testcase_26 AC 137 ms
41,524 KB
testcase_27 AC 134 ms
41,384 KB
testcase_28 AC 129 ms
41,376 KB
testcase_29 AC 209 ms
45,944 KB
testcase_30 AC 204 ms
43,808 KB
testcase_31 AC 129 ms
41,756 KB
testcase_32 AC 130 ms
41,088 KB
testcase_33 AC 116 ms
40,156 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