結果

問題 No.5 数字のブロック
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 19:33:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 75,824 KB
実行使用メモリ 59,840 KB
最終ジャッジ日時 2024-11-18 12:56:28
合計ジャッジ時間 8,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,292 KB
testcase_01 AC 106 ms
53,176 KB
testcase_02 AC 117 ms
53,848 KB
testcase_03 AC 208 ms
59,840 KB
testcase_04 AC 197 ms
57,452 KB
testcase_05 AC 232 ms
58,468 KB
testcase_06 AC 210 ms
57,896 KB
testcase_07 AC 191 ms
57,580 KB
testcase_08 AC 214 ms
58,368 KB
testcase_09 AC 182 ms
56,472 KB
testcase_10 AC 229 ms
58,748 KB
testcase_11 AC 195 ms
58,048 KB
testcase_12 AC 224 ms
58,332 KB
testcase_13 AC 231 ms
59,152 KB
testcase_14 AC 132 ms
54,528 KB
testcase_15 AC 153 ms
54,392 KB
testcase_16 AC 230 ms
58,684 KB
testcase_17 AC 237 ms
59,484 KB
testcase_18 AC 245 ms
58,516 KB
testcase_19 AC 242 ms
59,064 KB
testcase_20 AC 118 ms
53,884 KB
testcase_21 AC 108 ms
52,956 KB
testcase_22 AC 119 ms
54,020 KB
testcase_23 AC 118 ms
53,852 KB
testcase_24 AC 143 ms
54,188 KB
testcase_25 AC 156 ms
54,292 KB
testcase_26 AC 121 ms
54,328 KB
testcase_27 AC 120 ms
53,984 KB
testcase_28 AC 118 ms
54,140 KB
testcase_29 AC 200 ms
57,356 KB
testcase_30 AC 185 ms
56,564 KB
testcase_31 AC 115 ms
53,756 KB
testcase_32 AC 113 ms
54,196 KB
testcase_33 AC 111 ms
53,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int l = sc.nextInt();
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) ar[i] = sc.nextInt();
		Arrays.sort(ar);
		int ans = 0;
		for (int i=0; i<n; i++) {
			if (l-ar[i] >= 0) {
				l -= ar[i];
				ans++;
			}
		}
		System.out.println(ans);
		
	}
}
0