結果

問題 No.5 数字のブロック
ユーザー yy05853yy05853
提出日時 2018-11-21 22:45:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 277 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 47,520 KB
最終ジャッジ日時 2024-04-29 10:05:58
合計ジャッジ時間 9,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,264 KB
testcase_01 AC 136 ms
41,216 KB
testcase_02 AC 129 ms
40,948 KB
testcase_03 AC 243 ms
46,172 KB
testcase_04 AC 226 ms
45,268 KB
testcase_05 AC 261 ms
46,640 KB
testcase_06 AC 239 ms
46,160 KB
testcase_07 AC 227 ms
45,748 KB
testcase_08 AC 244 ms
46,752 KB
testcase_09 AC 205 ms
43,500 KB
testcase_10 AC 250 ms
46,516 KB
testcase_11 AC 232 ms
45,968 KB
testcase_12 AC 247 ms
46,296 KB
testcase_13 AC 261 ms
47,020 KB
testcase_14 AC 144 ms
41,396 KB
testcase_15 AC 154 ms
41,440 KB
testcase_16 AC 259 ms
46,916 KB
testcase_17 AC 271 ms
47,476 KB
testcase_18 AC 277 ms
47,280 KB
testcase_19 AC 273 ms
47,520 KB
testcase_20 AC 130 ms
41,336 KB
testcase_21 AC 133 ms
41,656 KB
testcase_22 AC 131 ms
41,156 KB
testcase_23 AC 133 ms
41,224 KB
testcase_24 AC 158 ms
41,764 KB
testcase_25 AC 178 ms
41,788 KB
testcase_26 AC 130 ms
41,168 KB
testcase_27 AC 131 ms
41,424 KB
testcase_28 AC 131 ms
41,084 KB
testcase_29 AC 227 ms
45,488 KB
testcase_30 AC 204 ms
43,320 KB
testcase_31 AC 130 ms
41,044 KB
testcase_32 AC 132 ms
41,372 KB
testcase_33 AC 132 ms
41,512 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