結果

問題 No.5 数字のブロック
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-16 15:39:01
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,063 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 76,188 KB
実行使用メモリ 47,764 KB
最終ジャッジ日時 2024-05-03 06:09:11
合計ジャッジ時間 10,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,400 KB
testcase_01 AC 128 ms
41,272 KB
testcase_02 RE -
testcase_03 AC 265 ms
46,820 KB
testcase_04 AC 243 ms
45,816 KB
testcase_05 AC 281 ms
47,256 KB
testcase_06 AC 248 ms
46,336 KB
testcase_07 AC 236 ms
46,292 KB
testcase_08 AC 258 ms
46,364 KB
testcase_09 AC 210 ms
43,552 KB
testcase_10 AC 285 ms
46,992 KB
testcase_11 AC 244 ms
45,740 KB
testcase_12 AC 260 ms
46,568 KB
testcase_13 AC 276 ms
46,604 KB
testcase_14 AC 152 ms
41,600 KB
testcase_15 AC 173 ms
41,664 KB
testcase_16 AC 279 ms
47,356 KB
testcase_17 AC 299 ms
47,764 KB
testcase_18 AC 301 ms
47,748 KB
testcase_19 AC 305 ms
47,568 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 134 ms
41,300 KB
testcase_24 AC 162 ms
41,596 KB
testcase_25 AC 188 ms
42,236 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 240 ms
45,832 KB
testcase_30 AC 217 ms
43,968 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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;
            kosu = j;
            if(total > L){
                break;
            }
        }
        System.out.println(kosu);
        
    }
}
0