結果

問題 No.5 数字のブロック
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-16 15:40:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 75,956 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-05-03 06:11:47
合計ジャッジ時間 10,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,308 KB
testcase_01 AC 133 ms
41,620 KB
testcase_02 WA -
testcase_03 AC 268 ms
47,052 KB
testcase_04 AC 239 ms
46,112 KB
testcase_05 AC 272 ms
47,500 KB
testcase_06 AC 252 ms
46,676 KB
testcase_07 AC 246 ms
46,596 KB
testcase_08 AC 262 ms
46,968 KB
testcase_09 AC 220 ms
44,348 KB
testcase_10 AC 291 ms
48,376 KB
testcase_11 AC 256 ms
46,164 KB
testcase_12 AC 258 ms
46,424 KB
testcase_13 AC 272 ms
47,172 KB
testcase_14 AC 150 ms
41,748 KB
testcase_15 AC 172 ms
41,716 KB
testcase_16 AC 278 ms
47,580 KB
testcase_17 AC 287 ms
47,692 KB
testcase_18 AC 287 ms
47,772 KB
testcase_19 AC 299 ms
48,108 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 138 ms
41,664 KB
testcase_24 AC 162 ms
41,760 KB
testcase_25 AC 192 ms
42,204 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 243 ms
46,636 KB
testcase_30 AC 221 ms
44,000 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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