結果

問題 No.5 数字のブロック
ユーザー gomagoma
提出日時 2017-09-23 13:09:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 251 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 59,216 KB
最終ジャッジ日時 2024-11-18 11:44:39
合計ジャッジ時間 8,786 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,128 KB
testcase_01 AC 123 ms
54,208 KB
testcase_02 AC 123 ms
54,192 KB
testcase_03 AC 222 ms
58,576 KB
testcase_04 AC 201 ms
57,276 KB
testcase_05 AC 226 ms
59,124 KB
testcase_06 AC 196 ms
58,260 KB
testcase_07 AC 205 ms
57,628 KB
testcase_08 AC 221 ms
58,352 KB
testcase_09 AC 183 ms
56,772 KB
testcase_10 AC 236 ms
58,700 KB
testcase_11 AC 204 ms
58,040 KB
testcase_12 AC 227 ms
58,488 KB
testcase_13 AC 230 ms
59,144 KB
testcase_14 AC 132 ms
54,048 KB
testcase_15 AC 147 ms
54,140 KB
testcase_16 AC 234 ms
58,744 KB
testcase_17 AC 231 ms
59,216 KB
testcase_18 AC 243 ms
58,236 KB
testcase_19 AC 251 ms
59,020 KB
testcase_20 AC 114 ms
53,640 KB
testcase_21 AC 111 ms
53,288 KB
testcase_22 AC 126 ms
54,180 KB
testcase_23 AC 108 ms
52,852 KB
testcase_24 AC 151 ms
54,404 KB
testcase_25 AC 164 ms
54,236 KB
testcase_26 AC 110 ms
52,928 KB
testcase_27 AC 110 ms
53,052 KB
testcase_28 AC 112 ms
53,728 KB
testcase_29 AC 200 ms
57,492 KB
testcase_30 AC 184 ms
56,856 KB
testcase_31 AC 107 ms
53,192 KB
testcase_32 AC 117 ms
53,948 KB
testcase_33 AC 108 ms
54,668 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