結果

問題 No.5 数字のブロック
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-09 21:04:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 78,500 KB
実行使用メモリ 58,896 KB
最終ジャッジ日時 2024-11-25 06:02:15
合計ジャッジ時間 9,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,888 KB
testcase_01 AC 132 ms
53,936 KB
testcase_02 WA -
testcase_03 AC 234 ms
58,200 KB
testcase_04 AC 222 ms
57,268 KB
testcase_05 WA -
testcase_06 AC 236 ms
58,052 KB
testcase_07 AC 224 ms
57,056 KB
testcase_08 AC 243 ms
58,124 KB
testcase_09 AC 206 ms
56,760 KB
testcase_10 AC 257 ms
58,352 KB
testcase_11 AC 231 ms
57,516 KB
testcase_12 AC 242 ms
58,124 KB
testcase_13 AC 251 ms
58,800 KB
testcase_14 AC 143 ms
53,928 KB
testcase_15 WA -
testcase_16 AC 262 ms
58,516 KB
testcase_17 AC 263 ms
58,264 KB
testcase_18 AC 271 ms
58,872 KB
testcase_19 AC 275 ms
58,896 KB
testcase_20 AC 132 ms
53,844 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 134 ms
53,912 KB
testcase_24 AC 161 ms
54,136 KB
testcase_25 AC 176 ms
54,108 KB
testcase_26 AC 132 ms
54,080 KB
testcase_27 AC 119 ms
53,036 KB
testcase_28 AC 132 ms
54,236 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 135 ms
53,796 KB
testcase_32 AC 133 ms
53,908 KB
testcase_33 AC 118 ms
53,112 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