結果

問題 No.5 数字のブロック
ユーザー S1hoS1ho
提出日時 2017-02-19 16:22:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 299 ms / 5,000 ms
コード長 833 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 48,220 KB
最終ジャッジ日時 2024-11-18 10:53:59
合計ジャッジ時間 11,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,412 KB
testcase_01 AC 135 ms
41,580 KB
testcase_02 AC 136 ms
41,424 KB
testcase_03 AC 260 ms
47,376 KB
testcase_04 AC 240 ms
45,604 KB
testcase_05 AC 276 ms
47,204 KB
testcase_06 AC 249 ms
46,240 KB
testcase_07 AC 234 ms
45,972 KB
testcase_08 AC 259 ms
46,392 KB
testcase_09 AC 212 ms
43,860 KB
testcase_10 AC 285 ms
47,884 KB
testcase_11 AC 238 ms
45,616 KB
testcase_12 AC 260 ms
46,852 KB
testcase_13 AC 273 ms
47,264 KB
testcase_14 AC 149 ms
41,696 KB
testcase_15 AC 160 ms
41,760 KB
testcase_16 AC 282 ms
47,736 KB
testcase_17 AC 292 ms
47,612 KB
testcase_18 AC 289 ms
48,056 KB
testcase_19 AC 299 ms
48,220 KB
testcase_20 AC 136 ms
41,208 KB
testcase_21 AC 135 ms
41,384 KB
testcase_22 AC 136 ms
41,412 KB
testcase_23 AC 134 ms
41,648 KB
testcase_24 AC 161 ms
41,768 KB
testcase_25 AC 185 ms
42,092 KB
testcase_26 AC 133 ms
41,212 KB
testcase_27 AC 133 ms
41,524 KB
testcase_28 AC 136 ms
41,628 KB
testcase_29 AC 230 ms
45,636 KB
testcase_30 AC 213 ms
43,648 KB
testcase_31 AC 134 ms
41,356 KB
testcase_32 AC 135 ms
41,432 KB
testcase_33 AC 133 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

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;
        
        for(int i=0;i<width.size();i++){
            
            sum += width.get(i);
            
            if(sum <= l){
                count++;
            }else{
                break;
            }
               
        }
        
        System.out.println(count);
    }
    
}
0