結果

問題 No.5 数字のブロック
ユーザー DemocoDemoco
提出日時 2016-04-09 02:09:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 47,688 KB
最終ジャッジ日時 2024-04-29 07:08:44
合計ジャッジ時間 9,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
39,820 KB
testcase_01 AC 114 ms
40,212 KB
testcase_02 AC 129 ms
40,972 KB
testcase_03 AC 246 ms
46,684 KB
testcase_04 AC 226 ms
45,464 KB
testcase_05 AC 258 ms
47,160 KB
testcase_06 AC 230 ms
45,536 KB
testcase_07 AC 226 ms
45,648 KB
testcase_08 AC 230 ms
46,536 KB
testcase_09 AC 198 ms
43,420 KB
testcase_10 AC 257 ms
47,096 KB
testcase_11 AC 226 ms
46,096 KB
testcase_12 AC 238 ms
46,428 KB
testcase_13 AC 256 ms
47,136 KB
testcase_14 AC 142 ms
41,748 KB
testcase_15 AC 149 ms
41,524 KB
testcase_16 AC 254 ms
46,376 KB
testcase_17 AC 263 ms
47,400 KB
testcase_18 AC 257 ms
46,684 KB
testcase_19 AC 274 ms
47,688 KB
testcase_20 AC 128 ms
41,276 KB
testcase_21 AC 132 ms
41,152 KB
testcase_22 AC 127 ms
41,116 KB
testcase_23 AC 115 ms
39,948 KB
testcase_24 AC 156 ms
41,872 KB
testcase_25 AC 174 ms
41,896 KB
testcase_26 AC 128 ms
41,340 KB
testcase_27 AC 128 ms
41,360 KB
testcase_28 AC 115 ms
40,068 KB
testcase_29 AC 222 ms
45,512 KB
testcase_30 AC 205 ms
43,952 KB
testcase_31 AC 128 ms
41,116 KB
testcase_32 AC 129 ms
41,096 KB
testcase_33 AC 129 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No5_Yukicoder {
	
	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];
		for(int i=0; i<N; i++) W[i] = sc.nextInt();
		Arrays.sort(W);
		int work = 0;
		int ans = 0;
		while(ans < N && (work+=W[ans]) <= L) {
			ans++;
		}
		System.out.println(ans);
		
	}
	
}
0