結果

問題 No.5 数字のブロック
ユーザー S1hoS1ho
提出日時 2017-02-19 16:11:44
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 695 bytes
コンパイル時間 4,575 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-12-30 05:09:18
合計ジャッジ時間 13,357 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
41,044 KB
testcase_01 AC 147 ms
41,492 KB
testcase_02 RE -
testcase_03 AC 282 ms
45,948 KB
testcase_04 AC 263 ms
45,832 KB
testcase_05 AC 303 ms
47,340 KB
testcase_06 AC 271 ms
46,616 KB
testcase_07 AC 257 ms
45,320 KB
testcase_08 AC 280 ms
46,704 KB
testcase_09 AC 224 ms
43,772 KB
testcase_10 AC 307 ms
48,076 KB
testcase_11 AC 257 ms
45,696 KB
testcase_12 AC 281 ms
46,940 KB
testcase_13 AC 291 ms
47,084 KB
testcase_14 AC 161 ms
41,608 KB
testcase_15 AC 173 ms
41,480 KB
testcase_16 AC 302 ms
47,164 KB
testcase_17 AC 322 ms
47,780 KB
testcase_18 AC 317 ms
47,552 KB
testcase_19 AC 327 ms
48,612 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 151 ms
41,324 KB
testcase_24 AC 180 ms
41,768 KB
testcase_25 AC 205 ms
42,060 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 262 ms
46,128 KB
testcase_30 AC 231 ms
44,264 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Box {

    public static void main(String[] args) {
        
        Scanner scanner = new Scanner(System.in);
        
        int l = scanner.nextInt();
        int n = scanner.nextInt();
        
        ArrayList<Integer> width = new ArrayList();
        
        for(int i=0;i<n;i++){
            width.add(scanner.nextInt());
        }
        
        Collections.sort(width);
        
        int sum = 0;
        int count = 0;
        
        while(sum <= l){
            sum += width.get(count);
            count++;
        }
        
        System.out.println(count-1);
    }
    
}
0