結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,248 KB
testcase_01 AC 119 ms
52,964 KB
testcase_02 WA -
testcase_03 AC 235 ms
57,956 KB
testcase_04 AC 219 ms
57,392 KB
testcase_05 WA -
testcase_06 AC 223 ms
58,252 KB
testcase_07 AC 218 ms
57,520 KB
testcase_08 AC 232 ms
58,028 KB
testcase_09 AC 194 ms
56,788 KB
testcase_10 AC 253 ms
58,916 KB
testcase_11 AC 215 ms
58,100 KB
testcase_12 AC 234 ms
58,164 KB
testcase_13 AC 242 ms
58,316 KB
testcase_14 AC 140 ms
54,368 KB
testcase_15 WA -
testcase_16 AC 247 ms
58,412 KB
testcase_17 AC 255 ms
58,832 KB
testcase_18 AC 253 ms
58,460 KB
testcase_19 AC 269 ms
59,180 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 114 ms
53,060 KB
testcase_24 AC 159 ms
54,104 KB
testcase_25 AC 174 ms
54,328 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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