結果

問題 No.5 数字のブロック
ユーザー sasakkisasakki
提出日時 2016-03-09 15:05:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 228 ms / 5,000 ms
コード長 453 bytes
コンパイル時間 1,596 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 56,844 KB
最終ジャッジ日時 2024-11-18 08:19:43
合計ジャッジ時間 7,599 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
51,864 KB
testcase_01 AC 95 ms
51,060 KB
testcase_02 AC 103 ms
51,952 KB
testcase_03 AC 195 ms
55,940 KB
testcase_04 AC 172 ms
55,056 KB
testcase_05 AC 208 ms
55,796 KB
testcase_06 AC 190 ms
55,860 KB
testcase_07 AC 185 ms
55,540 KB
testcase_08 AC 196 ms
56,084 KB
testcase_09 AC 165 ms
53,272 KB
testcase_10 AC 207 ms
56,564 KB
testcase_11 AC 186 ms
55,328 KB
testcase_12 AC 205 ms
56,488 KB
testcase_13 AC 204 ms
56,248 KB
testcase_14 AC 112 ms
51,944 KB
testcase_15 AC 118 ms
52,164 KB
testcase_16 AC 211 ms
55,944 KB
testcase_17 AC 219 ms
56,844 KB
testcase_18 AC 217 ms
56,652 KB
testcase_19 AC 228 ms
56,804 KB
testcase_20 AC 94 ms
50,712 KB
testcase_21 AC 93 ms
50,964 KB
testcase_22 AC 103 ms
52,056 KB
testcase_23 AC 94 ms
51,300 KB
testcase_24 AC 132 ms
52,340 KB
testcase_25 AC 143 ms
52,524 KB
testcase_26 AC 102 ms
51,952 KB
testcase_27 AC 103 ms
52,464 KB
testcase_28 AC 96 ms
51,264 KB
testcase_29 AC 179 ms
55,284 KB
testcase_30 AC 157 ms
53,656 KB
testcase_31 AC 96 ms
51,220 KB
testcase_32 AC 103 ms
51,988 KB
testcase_33 AC 102 ms
52,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
    public static void main(String args[]){
	
	Scanner scan = new Scanner(System.in);

	int L = scan.nextInt();
	int N = scan.nextInt();

	int[] W = new int[N];

	for(int i = 0; i < N; i++){
	    W[i] = scan.nextInt();
	}

	Arrays.sort(W);

	int cnt = 0;

	for(int i = 0; i < N; i++){
	    L -= W[i];
	    if(L < 0){
		break;
	    }
	    cnt++;
	}

	System.out.println(cnt);

    }
    
}
0