結果

問題 No.156 キャンディー・ボックス
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 19:44:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 3,276 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-07-05 16:13:02
合計ジャッジ時間 8,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,524 KB
testcase_01 AC 118 ms
40,692 KB
testcase_02 AC 127 ms
41,336 KB
testcase_03 AC 128 ms
41,372 KB
testcase_04 AC 127 ms
41,348 KB
testcase_05 AC 129 ms
41,584 KB
testcase_06 AC 117 ms
40,812 KB
testcase_07 AC 114 ms
39,756 KB
testcase_08 AC 126 ms
41,380 KB
testcase_09 AC 112 ms
40,128 KB
testcase_10 AC 124 ms
41,440 KB
testcase_11 AC 127 ms
41,192 KB
testcase_12 AC 117 ms
39,956 KB
testcase_13 AC 127 ms
41,316 KB
testcase_14 AC 121 ms
41,180 KB
testcase_15 AC 129 ms
41,420 KB
testcase_16 AC 126 ms
41,316 KB
testcase_17 AC 124 ms
41,380 KB
testcase_18 AC 126 ms
41,208 KB
testcase_19 AC 129 ms
41,332 KB
testcase_20 AC 127 ms
41,192 KB
testcase_21 AC 124 ms
41,776 KB
testcase_22 AC 131 ms
41,296 KB
testcase_23 AC 128 ms
40,976 KB
testcase_24 AC 116 ms
40,472 KB
testcase_25 AC 128 ms
41,356 KB
testcase_26 AC 126 ms
41,428 KB
testcase_27 AC 125 ms
41,336 KB
testcase_28 AC 123 ms
41,236 KB
testcase_29 AC 131 ms
41,224 KB
testcase_30 AC 126 ms
41,248 KB
testcase_31 AC 116 ms
41,724 KB
testcase_32 AC 129 ms
41,496 KB
testcase_33 AC 127 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No156 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int C[] = new int[N];
		for(int i = 0;i < N;i++) {
			C[i] = sc.nextInt();
		}
		Arrays.sort(C);
		
		int sum = 0;
		int x = 0;
		while(true) {
			sum += C[x];
			if(sum >= M) {
				if(sum == M) {
					x++;
				}
				break;
			}
			x++;
		}
		
		System.out.println(x);
	}
}
0