結果

問題 No.156 キャンディー・ボックス
ユーザー fal_rndfal_rnd
提出日時 2016-11-07 18:50:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 41,264 KB
最終ジャッジ日時 2024-07-05 15:56:39
合計ジャッジ時間 6,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,820 KB
testcase_01 AC 91 ms
39,736 KB
testcase_02 AC 104 ms
41,164 KB
testcase_03 AC 95 ms
40,300 KB
testcase_04 AC 102 ms
40,960 KB
testcase_05 AC 105 ms
41,080 KB
testcase_06 AC 96 ms
40,240 KB
testcase_07 AC 105 ms
41,264 KB
testcase_08 AC 91 ms
39,760 KB
testcase_09 AC 104 ms
40,796 KB
testcase_10 AC 104 ms
40,092 KB
testcase_11 AC 104 ms
40,792 KB
testcase_12 AC 108 ms
39,884 KB
testcase_13 AC 105 ms
40,968 KB
testcase_14 AC 105 ms
41,116 KB
testcase_15 AC 105 ms
40,840 KB
testcase_16 AC 104 ms
40,896 KB
testcase_17 AC 105 ms
40,808 KB
testcase_18 AC 104 ms
40,812 KB
testcase_19 AC 103 ms
41,048 KB
testcase_20 AC 103 ms
41,052 KB
testcase_21 AC 105 ms
40,912 KB
testcase_22 AC 104 ms
40,748 KB
testcase_23 AC 107 ms
40,872 KB
testcase_24 AC 106 ms
41,188 KB
testcase_25 AC 105 ms
41,228 KB
testcase_26 AC 95 ms
39,912 KB
testcase_27 AC 106 ms
40,772 KB
testcase_28 AC 95 ms
40,144 KB
testcase_29 AC 112 ms
41,208 KB
testcase_30 AC 116 ms
41,176 KB
testcase_31 AC 106 ms
40,944 KB
testcase_32 AC 97 ms
40,440 KB
testcase_33 AC 105 ms
40,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
class C{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args){
		Integer[] b=new Integer[s.nextInt()];
		int m=s.nextInt(),c=0;
		for(int i=0;i<b.length;i++) {
			b[i]=new Integer(s.next());
		}
		Arrays.sort(b);
		for(int i:b) {
			if((m-=i)<0)
				break;
			c++;
		}
		System.out.println(c);
	}
}
0