結果

問題 No.5 数字のブロック
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-19 20:22:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 76,604 KB
実行使用メモリ 47,976 KB
最終ジャッジ日時 2024-10-12 18:28:31
合計ジャッジ時間 9,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,216 KB
testcase_01 AC 125 ms
41,156 KB
testcase_02 WA -
testcase_03 AC 215 ms
45,296 KB
testcase_04 AC 199 ms
44,224 KB
testcase_05 WA -
testcase_06 AC 194 ms
44,292 KB
testcase_07 AC 198 ms
43,540 KB
testcase_08 AC 207 ms
45,068 KB
testcase_09 AC 179 ms
42,320 KB
testcase_10 AC 235 ms
47,300 KB
testcase_11 AC 193 ms
44,032 KB
testcase_12 AC 214 ms
44,916 KB
testcase_13 AC 221 ms
46,452 KB
testcase_14 AC 133 ms
41,276 KB
testcase_15 WA -
testcase_16 AC 226 ms
46,820 KB
testcase_17 AC 233 ms
47,976 KB
testcase_18 AC 238 ms
47,000 KB
testcase_19 AC 236 ms
47,208 KB
testcase_20 AC 124 ms
41,268 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 122 ms
41,472 KB
testcase_24 AC 144 ms
41,692 KB
testcase_25 AC 154 ms
41,484 KB
testcase_26 AC 124 ms
41,012 KB
testcase_27 AC 124 ms
41,536 KB
testcase_28 AC 127 ms
41,144 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 124 ms
41,232 KB
testcase_32 AC 124 ms
41,464 KB
testcase_33 AC 122 ms
41,316 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