結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,024 KB
testcase_01 AC 120 ms
53,664 KB
testcase_02 WA -
testcase_03 AC 221 ms
57,864 KB
testcase_04 AC 214 ms
57,348 KB
testcase_05 WA -
testcase_06 AC 219 ms
58,432 KB
testcase_07 AC 204 ms
57,224 KB
testcase_08 AC 232 ms
57,688 KB
testcase_09 AC 197 ms
56,820 KB
testcase_10 AC 228 ms
58,704 KB
testcase_11 AC 194 ms
58,076 KB
testcase_12 AC 223 ms
57,748 KB
testcase_13 AC 239 ms
57,856 KB
testcase_14 AC 138 ms
54,264 KB
testcase_15 WA -
testcase_16 AC 236 ms
58,696 KB
testcase_17 AC 265 ms
58,372 KB
testcase_18 AC 252 ms
58,400 KB
testcase_19 AC 256 ms
58,664 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 128 ms
54,120 KB
testcase_24 AC 144 ms
54,428 KB
testcase_25 AC 179 ms
53,916 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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