結果

問題 No.5 数字のブロック
ユーザー prestopresto
提出日時 2015-10-08 23:00:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 281 ms / 5,000 ms
コード長 600 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 58,784 KB
最終ジャッジ日時 2024-11-18 07:40:15
合計ジャッジ時間 10,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,916 KB
testcase_01 AC 138 ms
53,932 KB
testcase_02 AC 139 ms
53,952 KB
testcase_03 AC 251 ms
58,152 KB
testcase_04 AC 225 ms
57,172 KB
testcase_05 AC 262 ms
58,784 KB
testcase_06 AC 239 ms
58,296 KB
testcase_07 AC 230 ms
57,472 KB
testcase_08 AC 247 ms
58,176 KB
testcase_09 AC 208 ms
56,804 KB
testcase_10 AC 262 ms
57,968 KB
testcase_11 AC 233 ms
57,312 KB
testcase_12 AC 250 ms
58,144 KB
testcase_13 AC 260 ms
58,360 KB
testcase_14 AC 149 ms
54,100 KB
testcase_15 AC 164 ms
54,232 KB
testcase_16 AC 264 ms
58,760 KB
testcase_17 AC 265 ms
58,612 KB
testcase_18 AC 270 ms
58,512 KB
testcase_19 AC 281 ms
58,776 KB
testcase_20 AC 140 ms
54,052 KB
testcase_21 AC 138 ms
54,080 KB
testcase_22 AC 136 ms
54,192 KB
testcase_23 AC 140 ms
54,148 KB
testcase_24 AC 163 ms
54,340 KB
testcase_25 AC 189 ms
54,336 KB
testcase_26 AC 136 ms
53,912 KB
testcase_27 AC 137 ms
54,120 KB
testcase_28 AC 137 ms
53,948 KB
testcase_29 AC 227 ms
57,100 KB
testcase_30 AC 210 ms
56,828 KB
testcase_31 AC 135 ms
53,996 KB
testcase_32 AC 135 ms
54,004 KB
testcase_33 AC 135 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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];
        int sum = 0;
        int count = 0;
        for(int i = 0; i < n; i++) w[i] = sc.nextInt();
        Arrays.sort(w);
        for(int i = 0; i < n; i++){
           sum += w[i];
           count++;
           if(sum > l){
             System.out.println(i);
             return;
           }
        }
        System.out.println(count);
    }
}
0