結果

問題 No.5 数字のブロック
ユーザー 🐧しゅんチャマ🌸🐧しゅんチャマ🌸
提出日時 2023-09-06 22:29:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 5,000 ms
コード長 556 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 47,684 KB
最終ジャッジ日時 2024-06-24 16:43:13
合計ジャッジ時間 10,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,196 KB
testcase_01 AC 132 ms
41,192 KB
testcase_02 AC 131 ms
41,308 KB
testcase_03 AC 248 ms
46,400 KB
testcase_04 AC 227 ms
45,612 KB
testcase_05 AC 261 ms
47,228 KB
testcase_06 AC 227 ms
46,300 KB
testcase_07 AC 232 ms
45,812 KB
testcase_08 AC 255 ms
46,520 KB
testcase_09 AC 207 ms
43,604 KB
testcase_10 AC 265 ms
47,052 KB
testcase_11 AC 236 ms
46,004 KB
testcase_12 AC 249 ms
47,076 KB
testcase_13 AC 249 ms
46,812 KB
testcase_14 AC 140 ms
41,444 KB
testcase_15 AC 153 ms
41,640 KB
testcase_16 AC 256 ms
46,500 KB
testcase_17 AC 270 ms
47,280 KB
testcase_18 AC 267 ms
47,408 KB
testcase_19 AC 273 ms
47,684 KB
testcase_20 AC 133 ms
41,284 KB
testcase_21 AC 131 ms
41,092 KB
testcase_22 AC 130 ms
40,800 KB
testcase_23 AC 134 ms
41,336 KB
testcase_24 AC 169 ms
41,604 KB
testcase_25 AC 184 ms
41,824 KB
testcase_26 AC 132 ms
41,180 KB
testcase_27 AC 132 ms
41,512 KB
testcase_28 AC 132 ms
41,228 KB
testcase_29 AC 223 ms
45,604 KB
testcase_30 AC 207 ms
43,592 KB
testcase_31 AC 130 ms
41,712 KB
testcase_32 AC 116 ms
40,024 KB
testcase_33 AC 131 ms
41,592 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