結果

問題 No.5 数字のブロック
ユーザー AAAR SalmonAAAR Salmon
提出日時 2021-04-02 14:34:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 236 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 5,418 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 59,320 KB
最終ジャッジ日時 2024-06-02 11:58:06
合計ジャッジ時間 9,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,816 KB
testcase_01 AC 96 ms
52,776 KB
testcase_02 AC 112 ms
54,056 KB
testcase_03 AC 206 ms
57,820 KB
testcase_04 AC 186 ms
57,484 KB
testcase_05 AC 223 ms
59,072 KB
testcase_06 AC 199 ms
57,564 KB
testcase_07 AC 189 ms
57,268 KB
testcase_08 AC 206 ms
58,316 KB
testcase_09 AC 171 ms
56,652 KB
testcase_10 AC 219 ms
58,928 KB
testcase_11 AC 191 ms
57,332 KB
testcase_12 AC 210 ms
57,792 KB
testcase_13 AC 220 ms
59,036 KB
testcase_14 AC 116 ms
54,180 KB
testcase_15 AC 127 ms
54,048 KB
testcase_16 AC 213 ms
58,816 KB
testcase_17 AC 229 ms
59,320 KB
testcase_18 AC 228 ms
58,000 KB
testcase_19 AC 236 ms
58,816 KB
testcase_20 AC 111 ms
53,880 KB
testcase_21 AC 112 ms
54,100 KB
testcase_22 AC 113 ms
53,760 KB
testcase_23 AC 112 ms
54,108 KB
testcase_24 AC 143 ms
54,260 KB
testcase_25 AC 155 ms
54,424 KB
testcase_26 AC 100 ms
52,984 KB
testcase_27 AC 110 ms
54,108 KB
testcase_28 AC 106 ms
54,116 KB
testcase_29 AC 184 ms
57,532 KB
testcase_30 AC 170 ms
56,664 KB
testcase_31 AC 108 ms
53,904 KB
testcase_32 AC 103 ms
53,888 KB
testcase_33 AC 97 ms
53,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class problem1 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L, N;
		L = sc.nextInt();
		N = sc.nextInt();
		int[] W = new int[N];
		for (int i = 0; i < N; i++) {
			W[i] = sc.nextInt();
		}
		Arrays.sort(W);

		int ans = 0;
		for (int i = 0; i < N; i++) {
			if (L >= W[i]) {
				L -= W[i];
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0