結果

問題 No.156 キャンディー・ボックス
ユーザー spaciaspacia
提出日時 2015-12-20 14:21:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 37,124 KB
最終ジャッジ日時 2024-07-05 15:46:14
合計ジャッジ時間 4,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
37,008 KB
testcase_01 AC 41 ms
36,716 KB
testcase_02 AC 42 ms
36,492 KB
testcase_03 AC 42 ms
36,980 KB
testcase_04 AC 41 ms
36,976 KB
testcase_05 AC 41 ms
37,008 KB
testcase_06 AC 42 ms
37,124 KB
testcase_07 AC 43 ms
36,972 KB
testcase_08 AC 43 ms
36,940 KB
testcase_09 AC 42 ms
36,620 KB
testcase_10 AC 42 ms
37,008 KB
testcase_11 AC 42 ms
37,112 KB
testcase_12 AC 43 ms
36,588 KB
testcase_13 AC 42 ms
36,948 KB
testcase_14 AC 42 ms
37,084 KB
testcase_15 AC 41 ms
36,984 KB
testcase_16 AC 41 ms
36,984 KB
testcase_17 AC 40 ms
37,076 KB
testcase_18 AC 42 ms
36,984 KB
testcase_19 AC 41 ms
36,852 KB
testcase_20 AC 42 ms
37,076 KB
testcase_21 AC 42 ms
36,588 KB
testcase_22 AC 41 ms
36,828 KB
testcase_23 AC 42 ms
37,076 KB
testcase_24 AC 41 ms
37,052 KB
testcase_25 AC 42 ms
37,056 KB
testcase_26 AC 41 ms
36,620 KB
testcase_27 AC 42 ms
36,876 KB
testcase_28 AC 43 ms
36,980 KB
testcase_29 AC 44 ms
36,968 KB
testcase_30 AC 44 ms
36,756 KB
testcase_31 AC 42 ms
36,992 KB
testcase_32 AC 42 ms
37,108 KB
testcase_33 AC 41 ms
36,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main156 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line1 = br.readLine().split(" ");
		String[] line2 = br.readLine().split(" ");
		
		int ans = 0, sum = 0;
		int n = Integer.parseInt(line1[0]);
		int m = Integer.parseInt(line1[1]);
		int[] nums = new int[n];
		
		for (int i = 0; i < n; i++)
			nums[i] = Integer.parseInt(line2[i]);
		
		Arrays.sort(nums);
		for (int i = 0; i < n; i++) {
			sum += nums[i];
			if (sum <= m) {
				ans++;
			} else {
				break;
			}
		}
		
		out(ans);
	}
}
0