結果

問題 No.156 キャンディー・ボックス
ユーザー jimanojimano
提出日時 2018-01-18 23:31:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 3,440 ms
コンパイル使用メモリ 74,816 KB
実行使用メモリ 37,360 KB
最終ジャッジ日時 2024-07-05 16:12:15
合計ジャッジ時間 6,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,716 KB
testcase_01 AC 57 ms
37,064 KB
testcase_02 AC 54 ms
36,716 KB
testcase_03 AC 55 ms
36,948 KB
testcase_04 AC 53 ms
37,076 KB
testcase_05 AC 54 ms
37,064 KB
testcase_06 AC 53 ms
36,856 KB
testcase_07 AC 55 ms
36,948 KB
testcase_08 AC 54 ms
36,972 KB
testcase_09 AC 53 ms
37,360 KB
testcase_10 AC 53 ms
37,276 KB
testcase_11 AC 52 ms
36,608 KB
testcase_12 AC 52 ms
36,716 KB
testcase_13 AC 52 ms
37,232 KB
testcase_14 AC 52 ms
37,360 KB
testcase_15 AC 51 ms
37,276 KB
testcase_16 AC 50 ms
37,072 KB
testcase_17 AC 51 ms
37,104 KB
testcase_18 AC 46 ms
36,932 KB
testcase_19 AC 46 ms
37,068 KB
testcase_20 AC 46 ms
37,276 KB
testcase_21 AC 46 ms
36,716 KB
testcase_22 AC 48 ms
36,716 KB
testcase_23 AC 48 ms
37,180 KB
testcase_24 AC 47 ms
36,848 KB
testcase_25 AC 49 ms
37,232 KB
testcase_26 AC 48 ms
36,704 KB
testcase_27 AC 49 ms
37,296 KB
testcase_28 AC 49 ms
37,064 KB
testcase_29 AC 51 ms
36,972 KB
testcase_30 AC 48 ms
36,600 KB
testcase_31 AC 47 ms
36,892 KB
testcase_32 AC 47 ms
36,716 KB
testcase_33 AC 47 ms
36,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No0156 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] s1 = br.readLine().split(" ");
			String[] s2 = br.readLine().split(" ");
			int N = Integer.parseInt(s1[0]);
			int M = Integer.parseInt(s1[1]);			
			int[] candy = new int[N];
			int cntBox = 0;

			for (int i = 0; i < N; i++) {
				candy[i] = Integer.parseInt(s2[i]);
			}
			Arrays.sort(candy);
			for (int i = 0; i < N; i++) {
				M -= candy[i];
				if(M < 0) {
					break;
				}
				cntBox++;
			}
			System.out.println(cntBox);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0