結果

問題 No.5 数字のブロック
ユーザー kaoetayakaoetaya
提出日時 2016-12-09 17:16:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 537 bytes
コンパイル時間 3,165 ms
コンパイル使用メモリ 75,516 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-11-18 10:47:56
合計ジャッジ時間 9,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,128 KB
testcase_01 AC 121 ms
54,036 KB
testcase_02 AC 122 ms
54,120 KB
testcase_03 AC 221 ms
58,260 KB
testcase_04 AC 197 ms
57,464 KB
testcase_05 AC 234 ms
58,952 KB
testcase_06 AC 204 ms
57,816 KB
testcase_07 AC 200 ms
57,352 KB
testcase_08 AC 213 ms
58,020 KB
testcase_09 AC 183 ms
57,072 KB
testcase_10 AC 229 ms
58,056 KB
testcase_11 AC 203 ms
57,880 KB
testcase_12 AC 205 ms
58,104 KB
testcase_13 AC 232 ms
58,480 KB
testcase_14 AC 130 ms
54,528 KB
testcase_15 AC 140 ms
54,160 KB
testcase_16 AC 236 ms
58,748 KB
testcase_17 AC 245 ms
58,996 KB
testcase_18 AC 244 ms
58,440 KB
testcase_19 AC 241 ms
59,008 KB
testcase_20 AC 119 ms
54,112 KB
testcase_21 AC 119 ms
54,176 KB
testcase_22 AC 120 ms
54,552 KB
testcase_23 AC 119 ms
54,268 KB
testcase_24 AC 145 ms
54,392 KB
testcase_25 AC 167 ms
54,408 KB
testcase_26 AC 111 ms
53,148 KB
testcase_27 AC 119 ms
53,984 KB
testcase_28 AC 120 ms
54,016 KB
testcase_29 AC 191 ms
57,464 KB
testcase_30 AC 187 ms
56,640 KB
testcase_31 AC 123 ms
54,000 KB
testcase_32 AC 120 ms
54,184 KB
testcase_33 AC 109 ms
52,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Test {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
        int l = s.nextInt();
        int n = s.nextInt();
        int w[] = new int[n];

        for(int i=0;i<n;i++){
        	w[i] = s.nextInt();
        }

        Arrays.sort(w);

        int count = 0;

        for(int i=0;i<n;i++){
        	l -= w[i];
        	if(l >= 0){
        		count++;
        	}
        	else{
        		break;
        	}
        }

        System.out.println(count);

    }
}
0