結果

問題 No.156 キャンディー・ボックス
ユーザー YOSHIYOSHI
提出日時 2021-03-02 20:08:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 4,471 ms
コンパイル使用メモリ 80,556 KB
実行使用メモリ 51,308 KB
最終ジャッジ日時 2024-10-03 02:02:59
合計ジャッジ時間 8,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
50,656 KB
testcase_01 AC 62 ms
50,444 KB
testcase_02 AC 63 ms
51,268 KB
testcase_03 AC 61 ms
50,752 KB
testcase_04 AC 64 ms
51,136 KB
testcase_05 AC 64 ms
51,120 KB
testcase_06 AC 74 ms
51,000 KB
testcase_07 AC 63 ms
50,748 KB
testcase_08 AC 64 ms
50,848 KB
testcase_09 AC 74 ms
50,776 KB
testcase_10 AC 63 ms
50,952 KB
testcase_11 AC 67 ms
51,168 KB
testcase_12 AC 76 ms
51,168 KB
testcase_13 AC 65 ms
50,936 KB
testcase_14 AC 66 ms
50,828 KB
testcase_15 AC 72 ms
50,812 KB
testcase_16 AC 62 ms
51,308 KB
testcase_17 AC 63 ms
50,540 KB
testcase_18 AC 61 ms
50,796 KB
testcase_19 AC 64 ms
50,868 KB
testcase_20 AC 63 ms
50,736 KB
testcase_21 AC 65 ms
51,000 KB
testcase_22 AC 65 ms
50,964 KB
testcase_23 AC 65 ms
51,020 KB
testcase_24 AC 73 ms
51,092 KB
testcase_25 AC 63 ms
50,788 KB
testcase_26 AC 64 ms
51,096 KB
testcase_27 AC 64 ms
51,060 KB
testcase_28 AC 63 ms
50,904 KB
testcase_29 AC 64 ms
50,760 KB
testcase_30 AC 67 ms
51,076 KB
testcase_31 AC 65 ms
50,936 KB
testcase_32 AC 65 ms
50,956 KB
testcase_33 AC 64 ms
51,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000156_Main {

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

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

		String[] mArr = br.readLine().split(" ");
		int n = Integer.parseInt(mArr[0]);
		int m = Integer.parseInt(mArr[1]);
		int[] cArr = Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
		Arrays.sort(cArr);;
		int cnt = 0;
		for(int i = 0; i < n; i++) {
			if(m >= cArr[i]) {
				cnt++;
				m -= cArr[i];
			}
		}
		System.out.println(cnt);
	}
}
0