結果

問題 No.5 数字のブロック
ユーザー DemocoDemoco
提出日時 2015-05-01 18:08:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 80,208 KB
実行使用メモリ 48,216 KB
最終ジャッジ日時 2024-07-05 17:24:02
合計ジャッジ時間 8,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 99 ms
40,012 KB
testcase_02 RE -
testcase_03 AC 205 ms
47,420 KB
testcase_04 AC 193 ms
45,944 KB
testcase_05 AC 218 ms
46,972 KB
testcase_06 AC 201 ms
46,500 KB
testcase_07 AC 198 ms
46,244 KB
testcase_08 AC 200 ms
46,712 KB
testcase_09 AC 170 ms
43,896 KB
testcase_10 AC 217 ms
47,256 KB
testcase_11 AC 186 ms
46,036 KB
testcase_12 AC 208 ms
46,648 KB
testcase_13 AC 218 ms
46,604 KB
testcase_14 AC 119 ms
41,152 KB
testcase_15 AC 140 ms
41,324 KB
testcase_16 AC 241 ms
47,280 KB
testcase_17 AC 216 ms
48,216 KB
testcase_18 AC 226 ms
46,524 KB
testcase_19 AC 213 ms
47,136 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 107 ms
40,880 KB
testcase_24 AC 132 ms
42,000 KB
testcase_25 AC 147 ms
42,148 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 191 ms
45,856 KB
testcase_30 AC 171 ms
43,504 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++;
		}
		if(i==n) {
			System.out.println(i);
		} else {
			System.out.println(i-1);
		}
	}
}
0