結果

問題 No.5 数字のブロック
ユーザー KibidanKibidan
提出日時 2017-02-21 11:22:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 2,526 ms
コンパイル使用メモリ 75,168 KB
実行使用メモリ 46,556 KB
最終ジャッジ日時 2024-06-09 17:17:04
合計ジャッジ時間 9,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,500 KB
testcase_01 AC 129 ms
41,132 KB
testcase_02 WA -
testcase_03 AC 213 ms
44,532 KB
testcase_04 AC 193 ms
43,608 KB
testcase_05 WA -
testcase_06 AC 202 ms
44,012 KB
testcase_07 AC 200 ms
43,688 KB
testcase_08 AC 211 ms
43,816 KB
testcase_09 AC 182 ms
42,324 KB
testcase_10 AC 221 ms
46,268 KB
testcase_11 AC 201 ms
43,520 KB
testcase_12 AC 220 ms
44,928 KB
testcase_13 AC 216 ms
45,392 KB
testcase_14 AC 138 ms
41,440 KB
testcase_15 WA -
testcase_16 AC 212 ms
46,172 KB
testcase_17 AC 228 ms
46,556 KB
testcase_18 AC 224 ms
46,176 KB
testcase_19 AC 232 ms
46,204 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 131 ms
41,388 KB
testcase_24 AC 149 ms
41,656 KB
testcase_25 AC 169 ms
41,824 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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