結果

問題 No.5 数字のブロック
ユーザー DemocoDemoco
提出日時 2015-05-01 18:00:37
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 372 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 59,092 KB
最終ジャッジ日時 2024-07-05 17:23:47
合計ジャッジ時間 9,370 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,968 KB
testcase_01 AC 129 ms
54,380 KB
testcase_02 RE -
testcase_03 AC 240 ms
58,168 KB
testcase_04 AC 213 ms
57,492 KB
testcase_05 AC 250 ms
58,640 KB
testcase_06 AC 225 ms
57,724 KB
testcase_07 AC 221 ms
57,516 KB
testcase_08 AC 236 ms
58,116 KB
testcase_09 AC 201 ms
56,564 KB
testcase_10 AC 243 ms
57,872 KB
testcase_11 AC 219 ms
57,440 KB
testcase_12 AC 234 ms
58,320 KB
testcase_13 AC 247 ms
58,632 KB
testcase_14 AC 142 ms
54,176 KB
testcase_15 AC 152 ms
54,236 KB
testcase_16 AC 253 ms
58,796 KB
testcase_17 AC 265 ms
58,996 KB
testcase_18 AC 261 ms
57,824 KB
testcase_19 AC 267 ms
59,092 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 127 ms
54,168 KB
testcase_24 AC 155 ms
54,276 KB
testcase_25 AC 176 ms
54,564 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 215 ms
57,432 KB
testcase_30 AC 198 ms
56,572 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Yukico5 {
	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 a=0;
		int i=0;
		while(a<=l) {
			a = a+w[i];
			i++;
		}
		System.out.println(i-1);
	}
}
0