結果

問題 No.5 数字のブロック
ユーザー soujikisoujiki
提出日時 2015-04-24 18:04:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 3,282 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 58,976 KB
最終ジャッジ日時 2024-11-17 22:40:13
合計ジャッジ時間 9,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,344 KB
testcase_01 AC 113 ms
53,024 KB
testcase_02 AC 107 ms
52,772 KB
testcase_03 AC 223 ms
58,236 KB
testcase_04 AC 210 ms
57,396 KB
testcase_05 AC 243 ms
58,684 KB
testcase_06 AC 213 ms
57,816 KB
testcase_07 AC 207 ms
57,148 KB
testcase_08 AC 217 ms
57,392 KB
testcase_09 AC 185 ms
56,732 KB
testcase_10 AC 240 ms
58,192 KB
testcase_11 AC 201 ms
57,140 KB
testcase_12 AC 229 ms
58,444 KB
testcase_13 AC 241 ms
58,836 KB
testcase_14 AC 132 ms
54,056 KB
testcase_15 AC 151 ms
54,168 KB
testcase_16 AC 233 ms
58,812 KB
testcase_17 AC 251 ms
58,736 KB
testcase_18 AC 233 ms
58,392 KB
testcase_19 AC 253 ms
58,976 KB
testcase_20 AC 122 ms
54,120 KB
testcase_21 AC 122 ms
53,984 KB
testcase_22 AC 124 ms
53,788 KB
testcase_23 AC 109 ms
52,820 KB
testcase_24 AC 151 ms
54,316 KB
testcase_25 AC 165 ms
53,800 KB
testcase_26 AC 123 ms
54,064 KB
testcase_27 AC 121 ms
53,856 KB
testcase_28 AC 122 ms
53,912 KB
testcase_29 AC 214 ms
57,640 KB
testcase_30 AC 188 ms
56,172 KB
testcase_31 AC 121 ms
54,176 KB
testcase_32 AC 114 ms
53,004 KB
testcase_33 AC 110 ms
52,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_5{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int L = stdIn.nextInt();
		int N = stdIn.nextInt();
		int[] W = new int[N];
		for(int i=0;i<N;i++){
			W[i] = stdIn.nextInt();
		}

		Arrays.sort(W);
		int count = 0;

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

		System.out.println(count);

	}
}
0