結果

問題 No.5 数字のブロック
ユーザー yy05853yy05853
提出日時 2018-11-21 22:45:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 2,153 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 58,888 KB
最終ジャッジ日時 2024-11-18 12:43:01
合計ジャッジ時間 9,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,072 KB
testcase_01 AC 129 ms
54,140 KB
testcase_02 AC 117 ms
53,984 KB
testcase_03 AC 212 ms
57,796 KB
testcase_04 AC 204 ms
57,424 KB
testcase_05 AC 236 ms
58,888 KB
testcase_06 AC 213 ms
57,700 KB
testcase_07 AC 193 ms
57,420 KB
testcase_08 AC 215 ms
58,640 KB
testcase_09 AC 188 ms
56,700 KB
testcase_10 AC 234 ms
57,852 KB
testcase_11 AC 207 ms
57,512 KB
testcase_12 AC 226 ms
58,332 KB
testcase_13 AC 239 ms
58,528 KB
testcase_14 AC 129 ms
53,984 KB
testcase_15 AC 155 ms
54,252 KB
testcase_16 AC 232 ms
58,112 KB
testcase_17 AC 244 ms
58,460 KB
testcase_18 AC 258 ms
58,576 KB
testcase_19 AC 252 ms
58,768 KB
testcase_20 AC 106 ms
53,000 KB
testcase_21 AC 117 ms
54,188 KB
testcase_22 AC 107 ms
53,028 KB
testcase_23 AC 121 ms
53,996 KB
testcase_24 AC 148 ms
54,284 KB
testcase_25 AC 169 ms
54,540 KB
testcase_26 AC 118 ms
54,092 KB
testcase_27 AC 105 ms
53,016 KB
testcase_28 AC 119 ms
54,136 KB
testcase_29 AC 212 ms
57,540 KB
testcase_30 AC 186 ms
56,544 KB
testcase_31 AC 117 ms
53,832 KB
testcase_32 AC 123 ms
54,112 KB
testcase_33 AC 119 ms
53,972 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 = sc.nextInt();
        int N = sc.nextInt();
        
        int[] W = new int[N];
        for(int i = 0; i < N; i++)
            W[i] = sc.nextInt();
        
        Arrays.sort(W);
        
        int sum = 0;
        int ans = 0;
        for(int i = 0; i < N; i++) {
            sum += W[i];
            if(sum <= L)
                ans++;
        }
        
        System.out.println(ans);
        
    }
}
0