結果

問題 No.5 数字のブロック
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-09 20:53:01
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 514 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 59,416 KB
最終ジャッジ日時 2024-11-25 05:59:29
合計ジャッジ時間 9,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,880 KB
testcase_01 AC 134 ms
53,968 KB
testcase_02 RE -
testcase_03 AC 239 ms
58,084 KB
testcase_04 AC 226 ms
57,152 KB
testcase_05 AC 259 ms
58,768 KB
testcase_06 AC 237 ms
57,632 KB
testcase_07 AC 227 ms
57,584 KB
testcase_08 AC 231 ms
58,028 KB
testcase_09 AC 204 ms
56,500 KB
testcase_10 AC 258 ms
58,488 KB
testcase_11 AC 231 ms
58,020 KB
testcase_12 AC 249 ms
58,732 KB
testcase_13 AC 253 ms
58,180 KB
testcase_14 AC 146 ms
53,944 KB
testcase_15 AC 159 ms
53,876 KB
testcase_16 AC 257 ms
58,216 KB
testcase_17 AC 271 ms
59,416 KB
testcase_18 AC 260 ms
59,072 KB
testcase_19 AC 277 ms
58,268 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 132 ms
54,104 KB
testcase_24 AC 158 ms
54,012 KB
testcase_25 AC 177 ms
54,328 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 222 ms
57,296 KB
testcase_30 AC 203 ms
56,464 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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 =W[i];
        int c =0;
        while(s<=L){
                i++;
                s=s+W[i];
                c++;
        }
        System.out.println(c);
    }
}
0