結果

問題 No.5 数字のブロック
ユーザー DemocoDemoco
提出日時 2015-05-01 18:09:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 47,536 KB
最終ジャッジ日時 2024-07-05 17:24:20
合計ジャッジ時間 9,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 126 ms
41,584 KB
testcase_02 AC 113 ms
40,052 KB
testcase_03 AC 233 ms
46,252 KB
testcase_04 AC 217 ms
45,616 KB
testcase_05 AC 246 ms
47,320 KB
testcase_06 AC 227 ms
46,040 KB
testcase_07 AC 222 ms
45,756 KB
testcase_08 AC 234 ms
46,476 KB
testcase_09 AC 192 ms
43,348 KB
testcase_10 AC 249 ms
47,228 KB
testcase_11 AC 219 ms
45,568 KB
testcase_12 AC 241 ms
46,696 KB
testcase_13 AC 242 ms
46,344 KB
testcase_14 AC 142 ms
41,900 KB
testcase_15 AC 150 ms
41,456 KB
testcase_16 AC 252 ms
47,292 KB
testcase_17 AC 256 ms
47,500 KB
testcase_18 AC 259 ms
47,348 KB
testcase_19 AC 258 ms
47,536 KB
testcase_20 AC 125 ms
41,236 KB
testcase_21 AC 132 ms
41,244 KB
testcase_22 AC 119 ms
40,092 KB
testcase_23 AC 132 ms
41,300 KB
testcase_24 AC 152 ms
41,016 KB
testcase_25 AC 182 ms
41,856 KB
testcase_26 AC 126 ms
41,624 KB
testcase_27 AC 114 ms
40,112 KB
testcase_28 AC 117 ms
40,904 KB
testcase_29 AC 218 ms
45,488 KB
testcase_30 AC 203 ms
44,092 KB
testcase_31 AC 111 ms
39,832 KB
testcase_32 AC 124 ms
41,500 KB
testcase_33 AC 121 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

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 && i<n) {
			a = a+w[i];
			i++;
		}
		if(i==n) {
			System.out.println(i);
		} else {
			System.out.println(i-1);
		}
	}
}
0