結果

問題 No.5 数字のブロック
ユーザー klkl
提出日時 2020-09-30 10:45:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 47,612 KB
最終ジャッジ日時 2024-07-05 17:48:34
合計ジャッジ時間 9,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,036 KB
testcase_01 AC 125 ms
41,136 KB
testcase_02 WA -
testcase_03 AC 238 ms
46,388 KB
testcase_04 AC 211 ms
45,584 KB
testcase_05 WA -
testcase_06 AC 223 ms
46,168 KB
testcase_07 AC 217 ms
45,628 KB
testcase_08 AC 234 ms
46,532 KB
testcase_09 AC 195 ms
43,696 KB
testcase_10 AC 254 ms
46,668 KB
testcase_11 AC 234 ms
45,600 KB
testcase_12 AC 245 ms
46,436 KB
testcase_13 AC 240 ms
46,388 KB
testcase_14 AC 141 ms
41,752 KB
testcase_15 WA -
testcase_16 AC 248 ms
46,556 KB
testcase_17 AC 257 ms
47,168 KB
testcase_18 AC 256 ms
47,080 KB
testcase_19 AC 270 ms
47,612 KB
testcase_20 AC 120 ms
40,212 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 126 ms
40,916 KB
testcase_24 AC 160 ms
42,004 KB
testcase_25 AC 162 ms
42,180 KB
testcase_26 AC 128 ms
41,104 KB
testcase_27 AC 127 ms
41,132 KB
testcase_28 AC 130 ms
41,016 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 126 ms
41,128 KB
testcase_32 AC 125 ms
41,104 KB
testcase_33 AC 130 ms
41,072 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