結果

問題 No.156 キャンディー・ボックス
ユーザー aikon_marimoaikon_marimo
提出日時 2018-01-30 00:15:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 1,893 ms
コンパイル使用メモリ 75,056 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-07-05 16:12:30
合計ジャッジ時間 6,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,316 KB
testcase_01 AC 117 ms
41,136 KB
testcase_02 AC 119 ms
41,068 KB
testcase_03 AC 120 ms
41,044 KB
testcase_04 AC 113 ms
39,916 KB
testcase_05 AC 98 ms
39,400 KB
testcase_06 AC 111 ms
41,108 KB
testcase_07 AC 108 ms
40,728 KB
testcase_08 AC 110 ms
41,212 KB
testcase_09 AC 113 ms
40,008 KB
testcase_10 AC 109 ms
40,980 KB
testcase_11 AC 108 ms
40,164 KB
testcase_12 AC 112 ms
41,064 KB
testcase_13 AC 112 ms
40,932 KB
testcase_14 AC 104 ms
39,768 KB
testcase_15 AC 101 ms
39,880 KB
testcase_16 AC 113 ms
39,752 KB
testcase_17 AC 111 ms
41,456 KB
testcase_18 AC 101 ms
40,016 KB
testcase_19 AC 104 ms
40,364 KB
testcase_20 AC 111 ms
40,904 KB
testcase_21 AC 97 ms
39,508 KB
testcase_22 AC 101 ms
40,096 KB
testcase_23 AC 106 ms
40,364 KB
testcase_24 AC 107 ms
40,028 KB
testcase_25 AC 113 ms
39,844 KB
testcase_26 AC 97 ms
40,100 KB
testcase_27 AC 110 ms
40,780 KB
testcase_28 AC 113 ms
41,196 KB
testcase_29 AC 110 ms
41,128 KB
testcase_30 AC 114 ms
41,284 KB
testcase_31 AC 101 ms
39,908 KB
testcase_32 AC 110 ms
41,280 KB
testcase_33 AC 111 ms
40,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No156;

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		int N, M;
		List<Integer> arrC = new ArrayList<Integer>();
		
		N = in.nextInt();
		M = in.nextInt();
		for (int i = 0; i < N; i++) {
			int C = in.nextInt();
			arrC.add(C);
		}
		
		Collections.sort(arrC);
		
		int cnt = 0;
		int sum = 0;
		while (M > 0) {
			M -= arrC.get(cnt++);
		}
		if (M < 0) {
			cnt = cnt-1;
		}
		System.out.println(cnt);
	}
}
0