結果

問題 No.5 数字のブロック
ユーザー DemocoDemoco
提出日時 2015-05-02 00:49:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 58,744 KB
最終ジャッジ日時 2024-04-29 00:53:32
合計ジャッジ時間 10,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,308 KB
testcase_01 AC 134 ms
54,008 KB
testcase_02 AC 145 ms
53,560 KB
testcase_03 AC 254 ms
57,956 KB
testcase_04 AC 236 ms
57,060 KB
testcase_05 AC 270 ms
58,744 KB
testcase_06 AC 247 ms
57,676 KB
testcase_07 AC 234 ms
57,492 KB
testcase_08 AC 255 ms
58,052 KB
testcase_09 AC 219 ms
56,744 KB
testcase_10 AC 265 ms
57,984 KB
testcase_11 AC 236 ms
57,512 KB
testcase_12 AC 262 ms
58,344 KB
testcase_13 AC 268 ms
58,184 KB
testcase_14 AC 149 ms
53,712 KB
testcase_15 AC 171 ms
54,372 KB
testcase_16 AC 267 ms
58,520 KB
testcase_17 AC 269 ms
58,128 KB
testcase_18 AC 270 ms
58,556 KB
testcase_19 AC 278 ms
58,628 KB
testcase_20 AC 133 ms
53,692 KB
testcase_21 AC 131 ms
53,952 KB
testcase_22 AC 140 ms
53,860 KB
testcase_23 AC 135 ms
54,420 KB
testcase_24 AC 164 ms
54,056 KB
testcase_25 AC 194 ms
54,136 KB
testcase_26 AC 142 ms
53,808 KB
testcase_27 AC 139 ms
53,700 KB
testcase_28 AC 133 ms
54,032 KB
testcase_29 AC 227 ms
56,964 KB
testcase_30 AC 212 ms
56,164 KB
testcase_31 AC 137 ms
53,460 KB
testcase_32 AC 132 ms
53,928 KB
testcase_33 AC 132 ms
53,952 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 && a<=l) {
			System.out.println(i);
		} else {
			System.out.println(i-1);
		}
	}
}
0