結果

問題 No.5 数字のブロック
ユーザー pao2pao2pao2pao2
提出日時 2022-07-30 07:37:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 2,395 ms
コンパイル使用メモリ 77,116 KB
実行使用メモリ 47,664 KB
最終ジャッジ日時 2024-07-20 02:25:59
合計ジャッジ時間 9,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,116 KB
testcase_01 AC 112 ms
41,340 KB
testcase_02 AC 112 ms
41,364 KB
testcase_03 AC 212 ms
46,524 KB
testcase_04 AC 204 ms
45,576 KB
testcase_05 AC 238 ms
46,364 KB
testcase_06 AC 206 ms
46,272 KB
testcase_07 AC 203 ms
45,776 KB
testcase_08 AC 226 ms
46,664 KB
testcase_09 AC 198 ms
43,436 KB
testcase_10 AC 239 ms
47,120 KB
testcase_11 AC 214 ms
45,844 KB
testcase_12 AC 221 ms
46,736 KB
testcase_13 AC 264 ms
46,656 KB
testcase_14 AC 129 ms
41,436 KB
testcase_15 AC 147 ms
41,600 KB
testcase_16 AC 229 ms
46,328 KB
testcase_17 AC 247 ms
47,624 KB
testcase_18 AC 247 ms
47,348 KB
testcase_19 AC 251 ms
47,664 KB
testcase_20 AC 117 ms
41,292 KB
testcase_21 AC 115 ms
41,132 KB
testcase_22 AC 110 ms
39,840 KB
testcase_23 AC 106 ms
40,324 KB
testcase_24 AC 142 ms
41,620 KB
testcase_25 AC 158 ms
42,036 KB
testcase_26 AC 114 ms
41,040 KB
testcase_27 AC 106 ms
39,960 KB
testcase_28 AC 112 ms
41,148 KB
testcase_29 AC 206 ms
45,580 KB
testcase_30 AC 204 ms
43,704 KB
testcase_31 AC 119 ms
41,056 KB
testcase_32 AC 102 ms
40,384 KB
testcase_33 AC 112 ms
40,784 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];
		Arrays.setAll(w, i -> sc.nextInt());
		Arrays.sort(w);

		int cnt = 0;
		int sum = 0;
		for (int i = 0; i < n; i++) {
			sum += w[i];
			if (sum <= l) ++cnt;
		}

		System.out.println(cnt);

		sc.close();
	}
}
0