結果

問題 No.5 数字のブロック
ユーザー KatoooooKatooooo
提出日時 2017-09-11 22:41:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 47,992 KB
最終ジャッジ日時 2024-11-07 17:10:49
合計ジャッジ時間 10,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,328 KB
testcase_01 AC 130 ms
41,336 KB
testcase_02 WA -
testcase_03 AC 243 ms
46,036 KB
testcase_04 AC 225 ms
45,788 KB
testcase_05 WA -
testcase_06 AC 233 ms
46,160 KB
testcase_07 AC 234 ms
45,628 KB
testcase_08 AC 259 ms
46,228 KB
testcase_09 AC 209 ms
43,468 KB
testcase_10 AC 261 ms
46,952 KB
testcase_11 AC 236 ms
46,204 KB
testcase_12 AC 254 ms
46,412 KB
testcase_13 AC 262 ms
46,608 KB
testcase_14 AC 147 ms
41,488 KB
testcase_15 WA -
testcase_16 AC 258 ms
46,924 KB
testcase_17 AC 268 ms
47,992 KB
testcase_18 AC 272 ms
46,508 KB
testcase_19 AC 279 ms
47,612 KB
testcase_20 AC 131 ms
40,960 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 120 ms
40,316 KB
testcase_24 AC 158 ms
41,624 KB
testcase_25 AC 170 ms
41,956 KB
testcase_26 AC 123 ms
39,980 KB
testcase_27 AC 140 ms
41,212 KB
testcase_28 AC 133 ms
41,328 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 132 ms
41,228 KB
testcase_32 AC 119 ms
40,140 KB
testcase_33 AC 121 ms
40,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

public class Main {
    public static void main(String[] args){
        // Here your code !
        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 In = 0;
        for(int i = 0; i<N; i++){
            L -= W[i];
            if(L>0){
                In++;
            }else{
                break;
            }
        }
        System.out.println(In);
        
    }
}
0