結果

問題 No.156 キャンディー・ボックス
ユーザー mits58mits58
提出日時 2016-07-02 13:36:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 1,707 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-07-05 15:52:12
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,356 KB
testcase_01 AC 95 ms
40,156 KB
testcase_02 AC 103 ms
41,212 KB
testcase_03 AC 105 ms
40,972 KB
testcase_04 AC 91 ms
39,504 KB
testcase_05 AC 106 ms
40,836 KB
testcase_06 AC 106 ms
41,228 KB
testcase_07 AC 107 ms
41,424 KB
testcase_08 AC 107 ms
41,276 KB
testcase_09 AC 106 ms
41,160 KB
testcase_10 AC 107 ms
41,304 KB
testcase_11 AC 110 ms
41,172 KB
testcase_12 AC 106 ms
41,160 KB
testcase_13 AC 108 ms
41,212 KB
testcase_14 AC 98 ms
40,044 KB
testcase_15 AC 110 ms
41,016 KB
testcase_16 AC 106 ms
40,948 KB
testcase_17 AC 98 ms
40,312 KB
testcase_18 AC 106 ms
41,068 KB
testcase_19 AC 106 ms
41,216 KB
testcase_20 AC 106 ms
41,184 KB
testcase_21 AC 99 ms
40,308 KB
testcase_22 AC 98 ms
40,388 KB
testcase_23 AC 105 ms
40,920 KB
testcase_24 AC 106 ms
40,276 KB
testcase_25 AC 107 ms
40,936 KB
testcase_26 AC 106 ms
40,272 KB
testcase_27 AC 108 ms
41,416 KB
testcase_28 AC 111 ms
41,240 KB
testcase_29 AC 94 ms
39,420 KB
testcase_30 AC 109 ms
41,080 KB
testcase_31 AC 113 ms
41,244 KB
testcase_32 AC 104 ms
39,888 KB
testcase_33 AC 98 ms
39,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			long m=sc.nextLong();
			long[] c=new long[n];
			for(int i=0;i<n;i++) c[i]=sc.nextLong();
			Arrays.sort(c);
			for(int i=0;i<n;i++){
				m-=c[i];
				if(m==0){
					System.out.println(i+1);
					break;
				}
				else if(m<0){
					System.out.println(i);
					break;
				}
			}
		}
	}
}
0