結果

問題 No.156 キャンディー・ボックス
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-04 13:49:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 2,781 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-07-05 15:51:37
合計ジャッジ時間 7,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,344 KB
testcase_01 AC 97 ms
40,392 KB
testcase_02 AC 99 ms
40,448 KB
testcase_03 AC 104 ms
41,164 KB
testcase_04 AC 105 ms
40,948 KB
testcase_05 AC 104 ms
41,072 KB
testcase_06 AC 95 ms
40,156 KB
testcase_07 AC 105 ms
40,952 KB
testcase_08 AC 104 ms
41,228 KB
testcase_09 AC 94 ms
39,432 KB
testcase_10 AC 109 ms
41,304 KB
testcase_11 AC 107 ms
41,052 KB
testcase_12 AC 105 ms
40,952 KB
testcase_13 AC 106 ms
41,232 KB
testcase_14 AC 105 ms
41,064 KB
testcase_15 AC 97 ms
39,784 KB
testcase_16 AC 108 ms
41,672 KB
testcase_17 AC 108 ms
41,072 KB
testcase_18 AC 108 ms
40,948 KB
testcase_19 AC 111 ms
41,100 KB
testcase_20 AC 108 ms
41,332 KB
testcase_21 AC 95 ms
40,052 KB
testcase_22 AC 107 ms
41,528 KB
testcase_23 AC 105 ms
40,844 KB
testcase_24 AC 105 ms
41,032 KB
testcase_25 AC 105 ms
40,940 KB
testcase_26 AC 104 ms
41,068 KB
testcase_27 AC 105 ms
40,940 KB
testcase_28 AC 97 ms
39,812 KB
testcase_29 AC 104 ms
40,984 KB
testcase_30 AC 108 ms
41,684 KB
testcase_31 AC 104 ms
40,732 KB
testcase_32 AC 97 ms
40,016 KB
testcase_33 AC 97 ms
39,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class Yuki156 {
	
	public static void main(String[] args) {
		
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int m = scan.nextInt();
		int candyBox[] = new int[n];
		
		for (int i = 0; i < n; i++) {
			candyBox[i] = scan.nextInt();
		}
		
		Arrays.sort(candyBox);
		
		scan.close();
		
		int boxCount = 0;
		for (int i = 0; i < n; i++) {
			m -=candyBox[i];
			if (m >= 0) {
				boxCount++;
			}
		}
		System.out.println(boxCount);
	}
	
}
0