結果

問題 No.5 数字のブロック
ユーザー KatoooooKatooooo
提出日時 2017-09-11 22:43:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 1,702 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 47,640 KB
最終ジャッジ日時 2024-04-29 09:21:33
合計ジャッジ時間 8,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,988 KB
testcase_01 AC 112 ms
41,208 KB
testcase_02 AC 112 ms
41,608 KB
testcase_03 AC 207 ms
46,516 KB
testcase_04 AC 204 ms
45,796 KB
testcase_05 AC 237 ms
47,224 KB
testcase_06 AC 213 ms
46,288 KB
testcase_07 AC 204 ms
45,988 KB
testcase_08 AC 217 ms
46,692 KB
testcase_09 AC 172 ms
43,376 KB
testcase_10 AC 221 ms
47,480 KB
testcase_11 AC 186 ms
45,992 KB
testcase_12 AC 212 ms
46,456 KB
testcase_13 AC 224 ms
47,084 KB
testcase_14 AC 123 ms
41,256 KB
testcase_15 AC 125 ms
41,944 KB
testcase_16 AC 225 ms
46,184 KB
testcase_17 AC 226 ms
47,568 KB
testcase_18 AC 239 ms
47,568 KB
testcase_19 AC 231 ms
47,640 KB
testcase_20 AC 122 ms
41,192 KB
testcase_21 AC 106 ms
41,268 KB
testcase_22 AC 113 ms
40,056 KB
testcase_23 AC 108 ms
41,564 KB
testcase_24 AC 138 ms
41,920 KB
testcase_25 AC 156 ms
41,916 KB
testcase_26 AC 111 ms
41,328 KB
testcase_27 AC 102 ms
41,572 KB
testcase_28 AC 115 ms
41,484 KB
testcase_29 AC 195 ms
45,496 KB
testcase_30 AC 179 ms
44,104 KB
testcase_31 AC 114 ms
41,132 KB
testcase_32 AC 104 ms
41,216 KB
testcase_33 AC 107 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args){
        // Here your code !
        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 In = 0;
        for(int i = 0; i<N; i++){
            L -= W[i];
            if(L>=0){
                In++;
            }else{
                break;
            }
        }
        System.out.println(In);
        
    }
}
0