結果

問題 No.5 数字のブロック
ユーザー skylineskyline
提出日時 2020-02-01 13:48:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 230 ms / 5,000 ms
コード長 986 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 76,248 KB
実行使用メモリ 58,732 KB
最終ジャッジ日時 2024-09-18 19:56:37
合計ジャッジ時間 8,444 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,832 KB
testcase_01 AC 113 ms
54,036 KB
testcase_02 AC 114 ms
54,068 KB
testcase_03 AC 202 ms
57,572 KB
testcase_04 AC 197 ms
56,676 KB
testcase_05 AC 216 ms
57,540 KB
testcase_06 AC 185 ms
56,876 KB
testcase_07 AC 188 ms
56,692 KB
testcase_08 AC 191 ms
57,188 KB
testcase_09 AC 173 ms
54,644 KB
testcase_10 AC 215 ms
58,732 KB
testcase_11 AC 185 ms
56,808 KB
testcase_12 AC 194 ms
57,128 KB
testcase_13 AC 198 ms
58,244 KB
testcase_14 AC 122 ms
53,836 KB
testcase_15 AC 123 ms
54,128 KB
testcase_16 AC 210 ms
57,924 KB
testcase_17 AC 228 ms
58,392 KB
testcase_18 AC 230 ms
58,424 KB
testcase_19 AC 229 ms
58,572 KB
testcase_20 AC 122 ms
54,308 KB
testcase_21 AC 118 ms
54,304 KB
testcase_22 AC 107 ms
52,776 KB
testcase_23 AC 107 ms
52,732 KB
testcase_24 AC 135 ms
54,004 KB
testcase_25 AC 158 ms
54,228 KB
testcase_26 AC 115 ms
54,096 KB
testcase_27 AC 111 ms
53,984 KB
testcase_28 AC 117 ms
54,056 KB
testcase_29 AC 188 ms
57,268 KB
testcase_30 AC 173 ms
54,708 KB
testcase_31 AC 118 ms
54,032 KB
testcase_32 AC 121 ms
54,296 KB
testcase_33 AC 117 ms
54,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;

class Main {
    
    public static void main(String[] args) {
        
        No0005 no = new No0005();

        System.out.println(no.result());
        
    }
    
}

class No0005 {
    private int l;
    private int n;
    private List<Integer> w;
    private int result;
    
    public No0005() {
        Scanner sc = new Scanner(System.in);
        this.l = sc.nextInt();
        this.n = sc.nextInt();
        this.w = new ArrayList<>(this.n);
        for (int i = 0; i < this.n; i++) {
            this.w.add(Integer.parseInt(sc.next()));
        }
        Collections.sort(this.w);
        int totalW = 0;
        for (Integer i : this.w) {
            totalW += i;
            if (totalW > this.l) {
                break;
            }
            this.result++;
        }
    }
    
    public String result() {
        return String.valueOf(this.result);
    }
}
0