結果

問題 No.5 数字のブロック
ユーザー KibidanKibidan
提出日時 2017-02-21 11:51:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 75,844 KB
実行使用メモリ 58,492 KB
最終ジャッジ日時 2024-11-18 10:55:09
合計ジャッジ時間 9,066 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,120 KB
testcase_01 AC 128 ms
54,112 KB
testcase_02 AC 127 ms
54,272 KB
testcase_03 AC 201 ms
56,836 KB
testcase_04 AC 192 ms
56,600 KB
testcase_05 AC 214 ms
57,136 KB
testcase_06 AC 208 ms
56,880 KB
testcase_07 AC 197 ms
56,992 KB
testcase_08 AC 205 ms
57,404 KB
testcase_09 AC 179 ms
54,656 KB
testcase_10 AC 223 ms
58,092 KB
testcase_11 AC 198 ms
56,808 KB
testcase_12 AC 212 ms
56,876 KB
testcase_13 AC 219 ms
57,220 KB
testcase_14 AC 135 ms
54,184 KB
testcase_15 AC 144 ms
54,144 KB
testcase_16 AC 216 ms
57,064 KB
testcase_17 AC 224 ms
58,492 KB
testcase_18 AC 230 ms
58,284 KB
testcase_19 AC 231 ms
58,456 KB
testcase_20 AC 132 ms
53,972 KB
testcase_21 AC 135 ms
54,020 KB
testcase_22 AC 130 ms
53,928 KB
testcase_23 AC 129 ms
54,028 KB
testcase_24 AC 151 ms
54,236 KB
testcase_25 AC 162 ms
54,100 KB
testcase_26 AC 128 ms
54,076 KB
testcase_27 AC 128 ms
54,260 KB
testcase_28 AC 131 ms
54,188 KB
testcase_29 AC 196 ms
56,752 KB
testcase_30 AC 181 ms
54,480 KB
testcase_31 AC 127 ms
53,844 KB
testcase_32 AC 124 ms
54,244 KB
testcase_33 AC 132 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

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 count=0;
        for (int i = 0; i < N; i++) {
            L-=block[count];
            
            if (L>=0){
                count++;
            }else{
                break;
            }
        }
        System.out.println(count);

    }
}
0