結果

問題 No.5 数字のブロック
ユーザー kaoetayakaoetaya
提出日時 2016-12-09 17:15:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 59,040 KB
最終ジャッジ日時 2024-11-18 10:47:31
合計ジャッジ時間 11,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,164 KB
testcase_01 AC 134 ms
54,128 KB
testcase_02 AC 131 ms
54,404 KB
testcase_03 AC 232 ms
58,076 KB
testcase_04 AC 218 ms
57,420 KB
testcase_05 AC 241 ms
58,528 KB
testcase_06 AC 231 ms
57,880 KB
testcase_07 AC 222 ms
57,404 KB
testcase_08 AC 242 ms
58,212 KB
testcase_09 AC 204 ms
56,464 KB
testcase_10 AC 254 ms
58,740 KB
testcase_11 AC 225 ms
57,840 KB
testcase_12 AC 245 ms
58,452 KB
testcase_13 AC 246 ms
58,384 KB
testcase_14 AC 141 ms
54,324 KB
testcase_15 AC 160 ms
54,356 KB
testcase_16 AC 251 ms
58,488 KB
testcase_17 AC 255 ms
58,908 KB
testcase_18 AC 257 ms
58,924 KB
testcase_19 AC 272 ms
59,040 KB
testcase_20 AC 129 ms
54,180 KB
testcase_21 AC 131 ms
54,056 KB
testcase_22 AC 131 ms
54,168 KB
testcase_23 AC 131 ms
54,120 KB
testcase_24 AC 164 ms
54,212 KB
testcase_25 AC 184 ms
54,352 KB
testcase_26 AC 128 ms
54,060 KB
testcase_27 AC 129 ms
54,300 KB
testcase_28 AC 131 ms
54,420 KB
testcase_29 AC 218 ms
57,364 KB
testcase_30 AC 210 ms
56,672 KB
testcase_31 AC 134 ms
54,332 KB
testcase_32 AC 129 ms
54,060 KB
testcase_33 AC 132 ms
54,256 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,i = 0;

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

        System.out.println(count);

    }
}
0