結果

問題 No.156 キャンディー・ボックス
ユーザー ffmm00ffmm00
提出日時 2015-06-10 20:21:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 3,275 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-07-05 09:16:42
合計ジャッジ時間 8,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,432 KB
testcase_01 AC 112 ms
40,188 KB
testcase_02 AC 124 ms
41,164 KB
testcase_03 AC 123 ms
41,196 KB
testcase_04 AC 122 ms
40,924 KB
testcase_05 AC 124 ms
41,040 KB
testcase_06 AC 126 ms
41,372 KB
testcase_07 AC 124 ms
41,208 KB
testcase_08 AC 125 ms
41,212 KB
testcase_09 AC 126 ms
41,292 KB
testcase_10 AC 127 ms
41,284 KB
testcase_11 AC 121 ms
41,104 KB
testcase_12 AC 125 ms
41,076 KB
testcase_13 AC 123 ms
41,292 KB
testcase_14 AC 124 ms
41,144 KB
testcase_15 AC 126 ms
41,132 KB
testcase_16 AC 111 ms
39,816 KB
testcase_17 AC 120 ms
40,736 KB
testcase_18 AC 128 ms
41,124 KB
testcase_19 AC 127 ms
40,836 KB
testcase_20 AC 127 ms
41,208 KB
testcase_21 AC 124 ms
41,436 KB
testcase_22 AC 124 ms
41,240 KB
testcase_23 AC 130 ms
41,208 KB
testcase_24 AC 126 ms
41,344 KB
testcase_25 AC 127 ms
41,056 KB
testcase_26 AC 123 ms
41,112 KB
testcase_27 AC 125 ms
41,264 KB
testcase_28 AC 111 ms
40,112 KB
testcase_29 AC 120 ms
40,956 KB
testcase_30 AC 128 ms
41,276 KB
testcase_31 AC 126 ms
41,148 KB
testcase_32 AC 129 ms
41,184 KB
testcase_33 AC 125 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class N156 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		int n = sca.nextInt();
		int m = sca.nextInt();

		int[] c = new int[n];

		for (int i = 0; i < n; i++)
			c[i] = sca.nextInt();

		Arrays.sort(c);

		int A = 0;

		for (int i = 0; i < n; i++) {
			m -= c[i];
			if (m < 0)
				break;
			A++;
		}

		System.out.println(A);

	}

}
0