結果

問題 No.5 数字のブロック
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-16 15:43:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 281 ms / 5,000 ms
コード長 1,102 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 75,416 KB
実行使用メモリ 47,960 KB
最終ジャッジ日時 2024-11-24 03:58:08
合計ジャッジ時間 9,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,056 KB
testcase_01 AC 119 ms
40,204 KB
testcase_02 AC 125 ms
41,484 KB
testcase_03 AC 241 ms
46,684 KB
testcase_04 AC 230 ms
46,248 KB
testcase_05 AC 262 ms
47,256 KB
testcase_06 AC 236 ms
46,428 KB
testcase_07 AC 237 ms
46,104 KB
testcase_08 AC 240 ms
46,840 KB
testcase_09 AC 200 ms
43,828 KB
testcase_10 AC 275 ms
47,456 KB
testcase_11 AC 226 ms
45,456 KB
testcase_12 AC 241 ms
46,364 KB
testcase_13 AC 254 ms
46,960 KB
testcase_14 AC 134 ms
41,336 KB
testcase_15 AC 150 ms
41,596 KB
testcase_16 AC 261 ms
47,536 KB
testcase_17 AC 281 ms
47,804 KB
testcase_18 AC 274 ms
46,756 KB
testcase_19 AC 281 ms
47,960 KB
testcase_20 AC 113 ms
41,552 KB
testcase_21 AC 113 ms
40,992 KB
testcase_22 AC 123 ms
41,296 KB
testcase_23 AC 124 ms
41,416 KB
testcase_24 AC 154 ms
41,528 KB
testcase_25 AC 174 ms
41,812 KB
testcase_26 AC 124 ms
41,288 KB
testcase_27 AC 123 ms
41,180 KB
testcase_28 AC 124 ms
41,464 KB
testcase_29 AC 228 ms
46,044 KB
testcase_30 AC 200 ms
43,972 KB
testcase_31 AC 127 ms
41,356 KB
testcase_32 AC 115 ms
41,288 KB
testcase_33 AC 127 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc1 = new Scanner(System.in);
//        Scanner sc2 = new Scanner(System.in);
//        Scanner sc3 = new Scanner(System.in);
        List <Integer> W = new ArrayList<Integer>();

        //大きな箱の幅
        int L = sc1.nextInt();
        
        //ブロックの数
//        int N = sc2.nextInt();
        int N = sc1.nextInt();
        
        //各ブロックの幅を格納
        for(int i=0;i<N;i++ ){
//            int input = sc3.nextInt();
            int input = sc1.nextInt();
            W.add(input);
        }
        
        //昇順でsort
        Collections.sort(W);
        
        //大きな箱の中に、小さい箱を入れていく
        int total = 0;
        int kosu = 0;
        for(int j=0;j<N;j++){
            int num = W.get(j);
            total = total + num;
            if(total > L){
                break;
            }
            else{
                kosu = j + 1;
            }
        }
        System.out.println(kosu);
        
    }
}
0