結果

問題 No.5 数字のブロック
ユーザー yukiyuki
提出日時 2020-08-20 00:14:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 684 bytes
コンパイル時間 2,412 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 59,236 KB
最終ジャッジ日時 2024-10-12 10:24:05
合計ジャッジ時間 9,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,044 KB
testcase_01 AC 134 ms
54,496 KB
testcase_02 AC 132 ms
54,476 KB
testcase_03 AC 254 ms
58,764 KB
testcase_04 AC 234 ms
57,800 KB
testcase_05 AC 271 ms
58,640 KB
testcase_06 AC 244 ms
58,196 KB
testcase_07 AC 230 ms
57,792 KB
testcase_08 AC 247 ms
57,916 KB
testcase_09 AC 207 ms
56,628 KB
testcase_10 AC 275 ms
59,080 KB
testcase_11 AC 231 ms
57,740 KB
testcase_12 AC 253 ms
58,120 KB
testcase_13 AC 262 ms
58,700 KB
testcase_14 AC 144 ms
54,108 KB
testcase_15 AC 154 ms
54,472 KB
testcase_16 AC 268 ms
58,616 KB
testcase_17 AC 293 ms
59,236 KB
testcase_18 AC 281 ms
58,980 KB
testcase_19 AC 287 ms
59,140 KB
testcase_20 AC 132 ms
53,868 KB
testcase_21 AC 130 ms
53,732 KB
testcase_22 AC 130 ms
53,952 KB
testcase_23 AC 131 ms
53,984 KB
testcase_24 AC 157 ms
54,328 KB
testcase_25 AC 182 ms
54,220 KB
testcase_26 AC 139 ms
53,928 KB
testcase_27 AC 130 ms
54,448 KB
testcase_28 AC 127 ms
54,032 KB
testcase_29 AC 232 ms
57,972 KB
testcase_30 AC 208 ms
56,936 KB
testcase_31 AC 117 ms
53,056 KB
testcase_32 AC 131 ms
54,384 KB
testcase_33 AC 129 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        long box = in.nextLong();
        long N = in.nextLong();
        List<Long> list = new ArrayList<>();

        for(long i=0; i<N; i++){
            long block = in.nextLong();
            list.add(block);
        }
        // 5 7 10
        Collections.sort(list);

        long sum = 0;
        long count = 0;
        for(int i=0; i<N; i++){
            if( (sum + list.get(i)) <= box){
                sum += list.get(i);
                count++;
            }
        }
        System.out.println(count);
        
    }
}

0