結果

問題 No.156 キャンディー・ボックス
ユーザー リチウムリチウム
提出日時 2015-02-26 23:42:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 3,250 ms
コンパイル使用メモリ 74,732 KB
実行使用メモリ 56,024 KB
最終ジャッジ日時 2024-07-05 08:39:41
合計ジャッジ時間 8,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,960 KB
testcase_01 AC 113 ms
56,024 KB
testcase_02 AC 115 ms
54,084 KB
testcase_03 AC 106 ms
53,156 KB
testcase_04 AC 114 ms
53,884 KB
testcase_05 AC 141 ms
54,020 KB
testcase_06 AC 143 ms
53,976 KB
testcase_07 AC 139 ms
54,092 KB
testcase_08 AC 140 ms
53,960 KB
testcase_09 AC 140 ms
54,060 KB
testcase_10 AC 140 ms
54,200 KB
testcase_11 AC 123 ms
53,356 KB
testcase_12 AC 140 ms
53,816 KB
testcase_13 AC 142 ms
54,028 KB
testcase_14 AC 149 ms
54,100 KB
testcase_15 AC 142 ms
54,144 KB
testcase_16 AC 145 ms
54,192 KB
testcase_17 AC 141 ms
53,844 KB
testcase_18 AC 135 ms
54,172 KB
testcase_19 AC 129 ms
53,232 KB
testcase_20 AC 106 ms
53,448 KB
testcase_21 AC 114 ms
53,432 KB
testcase_22 AC 141 ms
54,096 KB
testcase_23 AC 122 ms
53,624 KB
testcase_24 AC 116 ms
53,996 KB
testcase_25 AC 115 ms
54,056 KB
testcase_26 AC 117 ms
53,836 KB
testcase_27 AC 113 ms
54,116 KB
testcase_28 AC 114 ms
54,100 KB
testcase_29 AC 105 ms
53,052 KB
testcase_30 AC 164 ms
54,100 KB
testcase_31 AC 132 ms
53,164 KB
testcase_32 AC 286 ms
54,176 KB
testcase_33 AC 283 ms
53,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class yukicoder {
	
	
	public static void main(String args[]) {
			Scanner sc=new Scanner(System.in);
			int n=sc.nextInt();
			int m=sc.nextInt();
			int box[]=new int[n];
			for(int i=0;i<n;i++){
				box[i]=sc.nextInt();
			}
			int ans=0;
			while(m>0){
				Arrays.sort(box);
				for(int i=0;i<n;i++){
					if(box[i]>0){
						box[i]--;
						m--;
						break;
					}
				}
			}
			Arrays.sort(box);
			for(int i=0;i<n;i++){
				if(box[i]==0)ans++;
			}
			System.out.println(ans);
			
	}

}


			
0