結果

問題 No.156 キャンディー・ボックス
ユーザー k_kadorak_kadora
提出日時 2015-05-27 03:37:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 3,865 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-05 09:15:56
合計ジャッジ時間 9,340 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,124 KB
testcase_01 AC 142 ms
41,592 KB
testcase_02 AC 142 ms
41,220 KB
testcase_03 AC 136 ms
41,248 KB
testcase_04 AC 137 ms
41,176 KB
testcase_05 AC 136 ms
41,292 KB
testcase_06 AC 137 ms
41,312 KB
testcase_07 AC 134 ms
41,472 KB
testcase_08 AC 135 ms
41,388 KB
testcase_09 AC 140 ms
41,484 KB
testcase_10 AC 143 ms
41,500 KB
testcase_11 AC 150 ms
41,272 KB
testcase_12 AC 146 ms
41,548 KB
testcase_13 AC 151 ms
41,196 KB
testcase_14 AC 149 ms
41,460 KB
testcase_15 AC 148 ms
41,552 KB
testcase_16 AC 151 ms
41,316 KB
testcase_17 AC 140 ms
41,288 KB
testcase_18 AC 119 ms
40,216 KB
testcase_19 AC 135 ms
41,176 KB
testcase_20 AC 135 ms
41,544 KB
testcase_21 AC 138 ms
41,260 KB
testcase_22 AC 133 ms
41,564 KB
testcase_23 AC 135 ms
41,140 KB
testcase_24 AC 131 ms
41,028 KB
testcase_25 AC 135 ms
41,296 KB
testcase_26 AC 131 ms
41,028 KB
testcase_27 AC 121 ms
40,440 KB
testcase_28 AC 134 ms
41,372 KB
testcase_29 AC 136 ms
41,464 KB
testcase_30 AC 136 ms
41,516 KB
testcase_31 AC 134 ms
41,464 KB
testcase_32 AC 133 ms
41,180 KB
testcase_33 AC 138 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Candy{
	public static void main(String[] arg){
		int n,m,res = 0;
		Scanner sc = new Scanner(System.in);
		n = sc.nextInt();
		m = sc.nextInt();
		int[] c = new int[n];
		for(int i = 0;i<n;i++){
			c[i] = sc.nextInt();
		}
		Arrays.sort(c);
		int j = 0;
		while(m>0){
			if(c[j] > m)break;
			m = m - c[j];
			j++;
			res++;
		}
		System.out.println(res);
	}
}
0