結果

問題 No.5 数字のブロック
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-16 15:40:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 81,176 KB
実行使用メモリ 55,900 KB
最終ジャッジ日時 2024-11-24 03:53:32
合計ジャッジ時間 9,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,268 KB
testcase_01 AC 126 ms
41,272 KB
testcase_02 WA -
testcase_03 AC 250 ms
47,148 KB
testcase_04 AC 226 ms
46,176 KB
testcase_05 AC 263 ms
47,244 KB
testcase_06 AC 237 ms
46,040 KB
testcase_07 AC 235 ms
46,276 KB
testcase_08 AC 239 ms
46,340 KB
testcase_09 AC 205 ms
43,852 KB
testcase_10 AC 269 ms
47,908 KB
testcase_11 AC 228 ms
46,180 KB
testcase_12 AC 243 ms
46,296 KB
testcase_13 AC 259 ms
46,900 KB
testcase_14 AC 142 ms
41,276 KB
testcase_15 AC 160 ms
41,644 KB
testcase_16 AC 266 ms
47,748 KB
testcase_17 AC 272 ms
47,516 KB
testcase_18 AC 278 ms
47,280 KB
testcase_19 AC 287 ms
47,992 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 124 ms
41,096 KB
testcase_24 AC 151 ms
41,916 KB
testcase_25 AC 166 ms
42,092 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 226 ms
46,000 KB
testcase_30 AC 208 ms
43,812 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