結果

問題 No.156 キャンディー・ボックス
ユーザー r.suzukir.suzuki
提出日時 2015-12-29 15:19:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 3,771 ms
コンパイル使用メモリ 84,496 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-07-05 15:46:32
合計ジャッジ時間 7,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,924 KB
testcase_01 AC 105 ms
39,960 KB
testcase_02 AC 105 ms
40,948 KB
testcase_03 AC 105 ms
41,080 KB
testcase_04 AC 108 ms
41,284 KB
testcase_05 AC 108 ms
40,924 KB
testcase_06 AC 106 ms
41,028 KB
testcase_07 AC 105 ms
41,056 KB
testcase_08 AC 106 ms
40,804 KB
testcase_09 AC 96 ms
40,100 KB
testcase_10 AC 104 ms
41,136 KB
testcase_11 AC 106 ms
40,904 KB
testcase_12 AC 98 ms
40,436 KB
testcase_13 AC 108 ms
41,016 KB
testcase_14 AC 98 ms
40,228 KB
testcase_15 AC 106 ms
40,984 KB
testcase_16 AC 105 ms
40,808 KB
testcase_17 AC 109 ms
40,820 KB
testcase_18 AC 113 ms
41,252 KB
testcase_19 AC 95 ms
40,052 KB
testcase_20 AC 107 ms
41,436 KB
testcase_21 AC 109 ms
41,488 KB
testcase_22 AC 108 ms
41,336 KB
testcase_23 AC 107 ms
40,924 KB
testcase_24 AC 104 ms
41,208 KB
testcase_25 AC 106 ms
40,612 KB
testcase_26 AC 104 ms
40,948 KB
testcase_27 AC 105 ms
41,140 KB
testcase_28 AC 105 ms
40,948 KB
testcase_29 AC 106 ms
40,920 KB
testcase_30 AC 106 ms
41,336 KB
testcase_31 AC 106 ms
40,804 KB
testcase_32 AC 106 ms
40,964 KB
testcase_33 AC 106 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedList;

class A {
	int want;
	LinkedList<Integer> have = new LinkedList<Integer>();

	A(int i) {
		this.want = i;
	}

}

public class No_156 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int n = sc.nextInt();
		LinkedList<Integer> box = new LinkedList<Integer>();
		A a = new A(sc.nextInt());

		for (int i = 0; i < n; i++) {
			box.add(sc.nextInt());
		}

		java.util.Collections.sort(box);

		while (a.want > 0) {
			int x = box.poll();
			a.want -= x;
			if (a.want >= 0) {
				a.have.add(x);
			}
		}
		System.out.println(a.have.size());
		sc.close();

	}

}
0