結果

問題 No.5 数字のブロック
ユーザー m4s4k1ch1m4s4k1ch1
提出日時 2015-05-28 00:39:32
言語 Java
(openjdk 23)
結果
AC  
実行時間 93 ms / 5,000 ms
コード長 712 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 40,316 KB
最終ジャッジ日時 2024-11-17 22:47:47
合計ジャッジ時間 4,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,120 KB
testcase_01 AC 47 ms
36,880 KB
testcase_02 AC 46 ms
36,960 KB
testcase_03 AC 82 ms
38,904 KB
testcase_04 AC 75 ms
38,032 KB
testcase_05 AC 91 ms
40,052 KB
testcase_06 AC 74 ms
38,352 KB
testcase_07 AC 66 ms
38,216 KB
testcase_08 AC 86 ms
39,056 KB
testcase_09 AC 53 ms
37,192 KB
testcase_10 AC 92 ms
39,888 KB
testcase_11 AC 76 ms
38,124 KB
testcase_12 AC 81 ms
39,440 KB
testcase_13 AC 92 ms
39,892 KB
testcase_14 AC 47 ms
36,984 KB
testcase_15 AC 47 ms
37,124 KB
testcase_16 AC 91 ms
39,964 KB
testcase_17 AC 86 ms
39,140 KB
testcase_18 AC 93 ms
39,920 KB
testcase_19 AC 93 ms
40,316 KB
testcase_20 AC 47 ms
36,736 KB
testcase_21 AC 47 ms
36,972 KB
testcase_22 AC 47 ms
36,716 KB
testcase_23 AC 46 ms
37,000 KB
testcase_24 AC 49 ms
37,160 KB
testcase_25 AC 49 ms
37,264 KB
testcase_26 AC 48 ms
37,104 KB
testcase_27 AC 46 ms
37,056 KB
testcase_28 AC 46 ms
36,968 KB
testcase_29 AC 74 ms
38,632 KB
testcase_30 AC 57 ms
38,128 KB
testcase_31 AC 47 ms
36,752 KB
testcase_32 AC 46 ms
37,104 KB
testcase_33 AC 48 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String args[]) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String line = br.readLine();
		int l = Integer.parseInt(line);
		line = br.readLine();
		int n = Integer.parseInt(line);
		line = br.readLine();
		String[] lines = line.split(" ");
		int[] ws = new int[n]; 
		
		for (int t = 0; t < n; t++) {
			ws[t] = Integer.parseInt(lines[t]);
		}
		
		Arrays.sort(ws);

		int total = 0;
		int res = 0;
		for (int w : ws) {
			if ((total + w) > l) {
				break;
			}
			total += w;
			res++;
		}
		System.out.println(res);
	}
}
0