結果

問題 No.5 数字のブロック
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-06 22:27:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 59,012 KB
最終ジャッジ日時 2024-06-24 16:42:01
合計ジャッジ時間 10,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,128 KB
testcase_01 AC 132 ms
54,068 KB
testcase_02 WA -
testcase_03 AC 242 ms
58,340 KB
testcase_04 AC 219 ms
57,424 KB
testcase_05 WA -
testcase_06 AC 235 ms
57,672 KB
testcase_07 AC 232 ms
57,852 KB
testcase_08 AC 236 ms
58,324 KB
testcase_09 AC 202 ms
57,432 KB
testcase_10 AC 258 ms
58,736 KB
testcase_11 AC 230 ms
57,548 KB
testcase_12 AC 246 ms
58,456 KB
testcase_13 AC 252 ms
58,496 KB
testcase_14 AC 145 ms
54,392 KB
testcase_15 WA -
testcase_16 AC 260 ms
58,028 KB
testcase_17 AC 267 ms
58,540 KB
testcase_18 AC 267 ms
58,344 KB
testcase_19 AC 272 ms
59,012 KB
testcase_20 AC 132 ms
54,060 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 130 ms
54,312 KB
testcase_24 AC 168 ms
54,420 KB
testcase_25 AC 180 ms
54,276 KB
testcase_26 AC 132 ms
54,384 KB
testcase_27 AC 130 ms
54,212 KB
testcase_28 AC 134 ms
54,412 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 133 ms
54,196 KB
testcase_32 AC 131 ms
53,872 KB
testcase_33 AC 119 ms
53,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

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];
        for(int i=0;i<N;i++){
            W[i]=sc.nextInt();
        }
        Arrays.sort(W);
        int count=0;
        int sum=0;
        for(int i=0;i<N;i++){
            sum+=W[i];
            if(sum>=L){
                break;
            }
            count++;
        }
        System.out.println(count);
    }
}
0