結果

問題 No.5 数字のブロック
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-19 20:23:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 250 ms / 5,000 ms
コード長 694 bytes
コンパイル時間 3,657 ms
コンパイル使用メモリ 76,640 KB
実行使用メモリ 47,744 KB
最終ジャッジ日時 2024-04-29 10:16:28
合計ジャッジ時間 9,343 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,224 KB
testcase_01 AC 127 ms
40,920 KB
testcase_02 AC 127 ms
41,308 KB
testcase_03 AC 227 ms
44,348 KB
testcase_04 AC 198 ms
43,616 KB
testcase_05 AC 232 ms
46,972 KB
testcase_06 AC 201 ms
43,972 KB
testcase_07 AC 201 ms
43,844 KB
testcase_08 AC 212 ms
44,040 KB
testcase_09 AC 183 ms
42,136 KB
testcase_10 AC 241 ms
46,468 KB
testcase_11 AC 196 ms
43,612 KB
testcase_12 AC 219 ms
44,564 KB
testcase_13 AC 228 ms
45,728 KB
testcase_14 AC 136 ms
41,440 KB
testcase_15 AC 145 ms
41,656 KB
testcase_16 AC 232 ms
45,872 KB
testcase_17 AC 248 ms
47,744 KB
testcase_18 AC 241 ms
46,408 KB
testcase_19 AC 250 ms
47,172 KB
testcase_20 AC 114 ms
40,052 KB
testcase_21 AC 122 ms
40,856 KB
testcase_22 AC 112 ms
39,852 KB
testcase_23 AC 126 ms
41,384 KB
testcase_24 AC 144 ms
41,164 KB
testcase_25 AC 153 ms
41,628 KB
testcase_26 AC 123 ms
41,208 KB
testcase_27 AC 124 ms
41,020 KB
testcase_28 AC 125 ms
40,876 KB
testcase_29 AC 192 ms
44,032 KB
testcase_30 AC 187 ms
42,348 KB
testcase_31 AC 126 ms
40,956 KB
testcase_32 AC 124 ms
41,040 KB
testcase_33 AC 124 ms
40,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main{
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        int wid = Integer.parseInt(sc.next());
        int num = Integer.parseInt(sc.next());
        List<Integer> box = new ArrayList<Integer>();
        for(int i = 0; i < num; i++){
            box.add(Integer.parseInt(sc.next()));
        }
        Collections.sort(box);
        int temp = 0;
        int ct = 0;
        for(Iterator it = box.iterator(); it.hasNext();){
            temp += ((Integer)it.next()).intValue();
            if(temp <= wid) { ct++;  } else {break;}
        }
        System.out.println(ct);
    }
}
0