結果

問題 No.5 数字のブロック
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-09 20:55:37
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 531 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 58,920 KB
最終ジャッジ日時 2024-11-25 06:00:08
合計ジャッジ時間 8,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
52,684 KB
testcase_01 AC 127 ms
53,836 KB
testcase_02 RE -
testcase_03 AC 231 ms
58,168 KB
testcase_04 AC 200 ms
57,264 KB
testcase_05 AC 248 ms
58,888 KB
testcase_06 AC 206 ms
57,708 KB
testcase_07 AC 207 ms
57,164 KB
testcase_08 AC 232 ms
58,528 KB
testcase_09 AC 192 ms
56,412 KB
testcase_10 AC 247 ms
58,632 KB
testcase_11 AC 211 ms
57,400 KB
testcase_12 AC 224 ms
58,236 KB
testcase_13 AC 232 ms
58,480 KB
testcase_14 AC 142 ms
54,152 KB
testcase_15 AC 144 ms
54,172 KB
testcase_16 AC 255 ms
58,468 KB
testcase_17 AC 248 ms
58,920 KB
testcase_18 AC 245 ms
58,236 KB
testcase_19 AC 263 ms
58,832 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 129 ms
53,772 KB
testcase_24 AC 151 ms
54,020 KB
testcase_25 AC 165 ms
54,216 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 197 ms
57,320 KB
testcase_30 AC 190 ms
56,544 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++;
if(c==N){break;}
        }
        System.out.println(c);
    }
}
0