結果

問題 No.5 数字のブロック
ユーザー KibidanKibidan
提出日時 2017-02-21 11:26:49
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 600 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 75,380 KB
実行使用メモリ 46,724 KB
最終ジャッジ日時 2024-06-09 17:15:47
合計ジャッジ時間 7,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
39,864 KB
testcase_01 AC 105 ms
40,964 KB
testcase_02 RE -
testcase_03 AC 184 ms
44,100 KB
testcase_04 AC 161 ms
43,492 KB
testcase_05 AC 182 ms
46,088 KB
testcase_06 AC 176 ms
43,972 KB
testcase_07 AC 164 ms
43,308 KB
testcase_08 AC 180 ms
44,468 KB
testcase_09 AC 151 ms
42,248 KB
testcase_10 AC 185 ms
46,200 KB
testcase_11 AC 172 ms
43,584 KB
testcase_12 AC 181 ms
44,304 KB
testcase_13 AC 184 ms
45,832 KB
testcase_14 AC 116 ms
41,484 KB
testcase_15 AC 117 ms
41,444 KB
testcase_16 AC 179 ms
45,836 KB
testcase_17 AC 189 ms
46,352 KB
testcase_18 AC 185 ms
46,060 KB
testcase_19 AC 195 ms
46,724 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 110 ms
40,936 KB
testcase_24 AC 123 ms
41,552 KB
testcase_25 AC 141 ms
41,532 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 162 ms
43,608 KB
testcase_30 AC 150 ms
42,292 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        int L=Integer.parseInt(sc.next());
        int N = Integer.parseInt(sc.next());
        int[] block=new int[N];
        for (int i = 0; i < N; i++) {
            block[i] = Integer.parseInt(sc.next());
        }
        Arrays.sort(block);

        int length=0;
        int count=0;
        do{
            length+=block[count];
            count++;
        }while(L>=length);
        
        System.out.println(count-1);

    }
}
0