結果

問題 No.5 数字のブロック
ユーザー gomagoma
提出日時 2017-09-23 13:09:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 75,368 KB
実行使用メモリ 48,088 KB
最終ジャッジ日時 2024-04-29 09:23:19
合計ジャッジ時間 8,457 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,088 KB
testcase_01 AC 115 ms
41,400 KB
testcase_02 AC 105 ms
41,124 KB
testcase_03 AC 210 ms
46,768 KB
testcase_04 AC 205 ms
45,700 KB
testcase_05 AC 228 ms
47,004 KB
testcase_06 AC 209 ms
46,380 KB
testcase_07 AC 195 ms
45,292 KB
testcase_08 AC 212 ms
46,460 KB
testcase_09 AC 186 ms
43,448 KB
testcase_10 AC 223 ms
47,888 KB
testcase_11 AC 198 ms
46,188 KB
testcase_12 AC 219 ms
47,080 KB
testcase_13 AC 229 ms
47,392 KB
testcase_14 AC 120 ms
42,048 KB
testcase_15 AC 129 ms
42,124 KB
testcase_16 AC 226 ms
46,104 KB
testcase_17 AC 245 ms
47,580 KB
testcase_18 AC 236 ms
47,504 KB
testcase_19 AC 249 ms
48,088 KB
testcase_20 AC 115 ms
41,288 KB
testcase_21 AC 121 ms
41,840 KB
testcase_22 AC 112 ms
41,616 KB
testcase_23 AC 105 ms
40,332 KB
testcase_24 AC 151 ms
41,464 KB
testcase_25 AC 165 ms
42,080 KB
testcase_26 AC 112 ms
41,496 KB
testcase_27 AC 120 ms
41,072 KB
testcase_28 AC 117 ms
41,500 KB
testcase_29 AC 206 ms
45,580 KB
testcase_30 AC 186 ms
43,716 KB
testcase_31 AC 113 ms
41,448 KB
testcase_32 AC 115 ms
41,224 KB
testcase_33 AC 121 ms
41,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int n = sc.nextInt();
		int w[] = new int[n];
		int count = 0;

		for (int i = 0; i < w.length; i++) {
			w[i] += sc.nextInt();
		}
		Arrays.sort(w);
		for (int i = 0; i < w.length; i++) {
			l -= w[i];
			if (l < 0) {
				break;
			}
			count++;
		}
		System.out.println(count);
	}
}
0