結果

問題 No.5 数字のブロック
ユーザー klkl
提出日時 2020-09-30 10:50:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 1,611 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 47,544 KB
最終ジャッジ日時 2024-07-05 17:54:07
合計ジャッジ時間 7,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,200 KB
testcase_01 AC 108 ms
41,392 KB
testcase_02 AC 108 ms
41,284 KB
testcase_03 AC 203 ms
46,340 KB
testcase_04 AC 186 ms
45,516 KB
testcase_05 AC 218 ms
46,184 KB
testcase_06 AC 191 ms
45,932 KB
testcase_07 AC 189 ms
45,896 KB
testcase_08 AC 208 ms
46,628 KB
testcase_09 AC 171 ms
43,692 KB
testcase_10 AC 218 ms
46,848 KB
testcase_11 AC 179 ms
45,500 KB
testcase_12 AC 210 ms
46,564 KB
testcase_13 AC 212 ms
47,296 KB
testcase_14 AC 121 ms
41,544 KB
testcase_15 AC 127 ms
41,996 KB
testcase_16 AC 223 ms
46,836 KB
testcase_17 AC 227 ms
47,476 KB
testcase_18 AC 229 ms
47,468 KB
testcase_19 AC 219 ms
47,544 KB
testcase_20 AC 108 ms
41,396 KB
testcase_21 AC 101 ms
41,360 KB
testcase_22 AC 101 ms
39,696 KB
testcase_23 AC 112 ms
41,336 KB
testcase_24 AC 128 ms
41,484 KB
testcase_25 AC 148 ms
41,940 KB
testcase_26 AC 109 ms
39,836 KB
testcase_27 AC 96 ms
41,156 KB
testcase_28 AC 101 ms
41,020 KB
testcase_29 AC 195 ms
45,744 KB
testcase_30 AC 176 ms
43,576 KB
testcase_31 AC 113 ms
41,524 KB
testcase_32 AC 100 ms
40,952 KB
testcase_33 AC 111 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    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];
        int result=0;
        int count=0;
        for(int i=0;i<n;i++){
            w[i]=sc.nextInt();
        }
        Arrays.sort(w);
        for(int i=0;i<n;i++){
            result+=w[i];
            if(result>l){
                break;
            }
            count++;
        }
        System.out.println(count);
    }
}
0