結果

問題 No.5 数字のブロック
ユーザー KatoooooKatooooo
提出日時 2017-09-11 22:43:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 74,688 KB
実行使用メモリ 59,012 KB
最終ジャッジ日時 2024-11-18 11:42:04
合計ジャッジ時間 9,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,204 KB
testcase_01 AC 127 ms
54,184 KB
testcase_02 AC 120 ms
53,848 KB
testcase_03 AC 225 ms
58,064 KB
testcase_04 AC 205 ms
57,392 KB
testcase_05 AC 229 ms
58,944 KB
testcase_06 AC 208 ms
58,080 KB
testcase_07 AC 187 ms
57,628 KB
testcase_08 AC 220 ms
58,216 KB
testcase_09 AC 184 ms
56,816 KB
testcase_10 AC 237 ms
58,768 KB
testcase_11 AC 201 ms
57,656 KB
testcase_12 AC 226 ms
58,436 KB
testcase_13 AC 235 ms
58,412 KB
testcase_14 AC 140 ms
54,132 KB
testcase_15 AC 143 ms
54,288 KB
testcase_16 AC 232 ms
58,064 KB
testcase_17 AC 240 ms
58,832 KB
testcase_18 AC 246 ms
59,012 KB
testcase_19 AC 252 ms
58,904 KB
testcase_20 AC 123 ms
54,168 KB
testcase_21 AC 123 ms
54,188 KB
testcase_22 AC 109 ms
53,168 KB
testcase_23 AC 110 ms
53,192 KB
testcase_24 AC 142 ms
54,156 KB
testcase_25 AC 166 ms
54,404 KB
testcase_26 AC 122 ms
54,308 KB
testcase_27 AC 107 ms
54,072 KB
testcase_28 AC 108 ms
53,180 KB
testcase_29 AC 204 ms
57,432 KB
testcase_30 AC 184 ms
56,876 KB
testcase_31 AC 106 ms
53,220 KB
testcase_32 AC 118 ms
53,952 KB
testcase_33 AC 109 ms
53,148 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