結果

問題 No.5 数字のブロック
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-09 21:05:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 575 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 47,864 KB
最終ジャッジ日時 2024-11-18 10:34:09
合計ジャッジ時間 8,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,084 KB
testcase_01 AC 118 ms
41,152 KB
testcase_02 AC 110 ms
41,492 KB
testcase_03 AC 206 ms
46,828 KB
testcase_04 AC 202 ms
45,480 KB
testcase_05 AC 226 ms
47,456 KB
testcase_06 AC 196 ms
45,832 KB
testcase_07 AC 200 ms
45,820 KB
testcase_08 AC 214 ms
46,440 KB
testcase_09 AC 182 ms
43,636 KB
testcase_10 AC 231 ms
47,472 KB
testcase_11 AC 203 ms
46,040 KB
testcase_12 AC 216 ms
46,388 KB
testcase_13 AC 219 ms
46,388 KB
testcase_14 AC 123 ms
41,752 KB
testcase_15 AC 139 ms
41,600 KB
testcase_16 AC 233 ms
47,052 KB
testcase_17 AC 229 ms
47,472 KB
testcase_18 AC 236 ms
47,028 KB
testcase_19 AC 243 ms
47,864 KB
testcase_20 AC 117 ms
41,456 KB
testcase_21 AC 101 ms
41,460 KB
testcase_22 AC 104 ms
41,320 KB
testcase_23 AC 105 ms
41,376 KB
testcase_24 AC 144 ms
41,804 KB
testcase_25 AC 163 ms
42,368 KB
testcase_26 AC 120 ms
41,228 KB
testcase_27 AC 119 ms
41,328 KB
testcase_28 AC 116 ms
41,196 KB
testcase_29 AC 195 ms
45,804 KB
testcase_30 AC 184 ms
43,564 KB
testcase_31 AC 102 ms
41,268 KB
testcase_32 AC 106 ms
40,980 KB
testcase_33 AC 104 ms
41,504 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];
        for(int i=0; i<N; i++){
            W[i]=sc.nextInt();
        }
        Arrays.sort(W);
        int i =0;
        int s =0;
        int c =0;
        while(true){
                s=s+W[i];
                if(s>L){break;}
                i++;
                c++;
               if(c==N){break;}
        }
        System.out.println(c);
    }
}
0