結果

問題 No.156 キャンディー・ボックス
ユーザー リチウムリチウム
提出日時 2015-02-26 23:42:13
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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