結果

問題 No.5 数字のブロック
ユーザー yuuki121yuuki121
提出日時 2020-12-28 22:01:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 2,747 ms
コンパイル使用メモリ 79,664 KB
実行使用メモリ 40,900 KB
最終ジャッジ日時 2024-10-04 00:20:49
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
37,564 KB
testcase_01 AC 64 ms
37,832 KB
testcase_02 AC 65 ms
37,692 KB
testcase_03 AC 106 ms
40,252 KB
testcase_04 AC 87 ms
38,932 KB
testcase_05 AC 106 ms
39,656 KB
testcase_06 AC 98 ms
39,616 KB
testcase_07 AC 89 ms
38,960 KB
testcase_08 AC 105 ms
40,308 KB
testcase_09 AC 82 ms
39,116 KB
testcase_10 AC 123 ms
40,600 KB
testcase_11 AC 91 ms
39,052 KB
testcase_12 AC 109 ms
40,744 KB
testcase_13 AC 108 ms
39,808 KB
testcase_14 AC 68 ms
38,012 KB
testcase_15 AC 67 ms
38,220 KB
testcase_16 AC 108 ms
39,612 KB
testcase_17 AC 126 ms
40,764 KB
testcase_18 AC 125 ms
40,900 KB
testcase_19 AC 120 ms
40,088 KB
testcase_20 AC 66 ms
38,016 KB
testcase_21 AC 65 ms
37,444 KB
testcase_22 AC 65 ms
37,756 KB
testcase_23 AC 64 ms
37,692 KB
testcase_24 AC 68 ms
37,960 KB
testcase_25 AC 76 ms
38,456 KB
testcase_26 AC 66 ms
37,628 KB
testcase_27 AC 65 ms
37,316 KB
testcase_28 AC 65 ms
37,316 KB
testcase_29 AC 87 ms
39,120 KB
testcase_30 AC 89 ms
39,040 KB
testcase_31 AC 64 ms
37,552 KB
testcase_32 AC 65 ms
37,700 KB
testcase_33 AC 65 ms
38,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

public class Main {
	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		// L
		int numL = Integer.parseInt(br.readLine());
		// N
		int numN = Integer.parseInt(br.readLine());
		// W1,W2,,,,,Wn
		int[] numW = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).sorted().toArray();

		int sum = 0;
		int count = 0;

		for (int num : numW) {
			sum += num;

			if (sum > numL) break; else count++;

		}

		System.out.println(count);

	}
}
0