結果

問題 No.5 数字のブロック
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-19 20:23:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 694 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 59,104 KB
最終ジャッジ日時 2024-11-18 12:56:43
合計ジャッジ時間 8,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,000 KB
testcase_01 AC 113 ms
54,184 KB
testcase_02 AC 112 ms
54,060 KB
testcase_03 AC 188 ms
57,976 KB
testcase_04 AC 186 ms
56,748 KB
testcase_05 AC 219 ms
58,296 KB
testcase_06 AC 179 ms
56,768 KB
testcase_07 AC 187 ms
56,792 KB
testcase_08 AC 189 ms
56,844 KB
testcase_09 AC 160 ms
54,444 KB
testcase_10 AC 206 ms
58,308 KB
testcase_11 AC 183 ms
57,004 KB
testcase_12 AC 196 ms
57,204 KB
testcase_13 AC 201 ms
57,888 KB
testcase_14 AC 119 ms
53,840 KB
testcase_15 AC 126 ms
54,116 KB
testcase_16 AC 198 ms
58,024 KB
testcase_17 AC 218 ms
59,104 KB
testcase_18 AC 210 ms
57,504 KB
testcase_19 AC 220 ms
58,780 KB
testcase_20 AC 114 ms
53,980 KB
testcase_21 AC 111 ms
54,280 KB
testcase_22 AC 103 ms
52,984 KB
testcase_23 AC 116 ms
54,192 KB
testcase_24 AC 134 ms
54,092 KB
testcase_25 AC 147 ms
54,164 KB
testcase_26 AC 111 ms
54,240 KB
testcase_27 AC 109 ms
54,120 KB
testcase_28 AC 111 ms
53,992 KB
testcase_29 AC 181 ms
57,112 KB
testcase_30 AC 168 ms
54,752 KB
testcase_31 AC 113 ms
53,976 KB
testcase_32 AC 113 ms
54,180 KB
testcase_33 AC 113 ms
53,792 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