結果

問題 No.5 数字のブロック
ユーザー S1hoS1ho
提出日時 2017-02-19 16:22:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 291 ms / 5,000 ms
コード長 833 bytes
コンパイル時間 4,684 ms
コンパイル使用メモリ 84,088 KB
実行使用メモリ 58,928 KB
最終ジャッジ日時 2024-04-29 08:49:34
合計ジャッジ時間 11,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,696 KB
testcase_01 AC 120 ms
52,652 KB
testcase_02 AC 115 ms
52,960 KB
testcase_03 AC 249 ms
58,056 KB
testcase_04 AC 233 ms
57,828 KB
testcase_05 AC 266 ms
58,548 KB
testcase_06 AC 235 ms
57,968 KB
testcase_07 AC 222 ms
57,592 KB
testcase_08 AC 243 ms
57,728 KB
testcase_09 AC 205 ms
56,580 KB
testcase_10 AC 273 ms
58,784 KB
testcase_11 AC 217 ms
58,056 KB
testcase_12 AC 250 ms
58,176 KB
testcase_13 AC 258 ms
57,924 KB
testcase_14 AC 141 ms
54,396 KB
testcase_15 AC 153 ms
54,344 KB
testcase_16 AC 260 ms
57,700 KB
testcase_17 AC 285 ms
58,928 KB
testcase_18 AC 275 ms
57,992 KB
testcase_19 AC 291 ms
58,880 KB
testcase_20 AC 129 ms
53,828 KB
testcase_21 AC 122 ms
53,032 KB
testcase_22 AC 127 ms
54,108 KB
testcase_23 AC 131 ms
53,936 KB
testcase_24 AC 158 ms
54,180 KB
testcase_25 AC 178 ms
54,316 KB
testcase_26 AC 127 ms
54,056 KB
testcase_27 AC 114 ms
52,476 KB
testcase_28 AC 129 ms
53,668 KB
testcase_29 AC 229 ms
57,792 KB
testcase_30 AC 209 ms
56,516 KB
testcase_31 AC 115 ms
52,556 KB
testcase_32 AC 115 ms
52,644 KB
testcase_33 AC 116 ms
52,972 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