結果

問題 No.156 キャンディー・ボックス
ユーザー spacenautspacenaut
提出日時 2016-05-22 16:26:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 598 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 76,992 KB
実行使用メモリ 46,164 KB
最終ジャッジ日時 2024-07-05 15:50:38
合計ジャッジ時間 9,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,708 KB
testcase_01 AC 105 ms
39,780 KB
testcase_02 AC 104 ms
39,640 KB
testcase_03 AC 105 ms
41,360 KB
testcase_04 AC 105 ms
39,892 KB
testcase_05 AC 195 ms
45,664 KB
testcase_06 AC 211 ms
45,816 KB
testcase_07 AC 262 ms
45,776 KB
testcase_08 AC 199 ms
45,560 KB
testcase_09 AC 177 ms
45,220 KB
testcase_10 AC 214 ms
45,568 KB
testcase_11 AC 200 ms
45,412 KB
testcase_12 AC 262 ms
46,012 KB
testcase_13 AC 233 ms
45,708 KB
testcase_14 AC 213 ms
45,708 KB
testcase_15 AC 239 ms
45,556 KB
testcase_16 AC 196 ms
45,260 KB
testcase_17 AC 199 ms
45,624 KB
testcase_18 AC 170 ms
42,932 KB
testcase_19 AC 181 ms
43,844 KB
testcase_20 AC 125 ms
41,360 KB
testcase_21 AC 146 ms
41,744 KB
testcase_22 AC 169 ms
43,236 KB
testcase_23 AC 151 ms
41,912 KB
testcase_24 AC 92 ms
39,612 KB
testcase_25 AC 104 ms
40,108 KB
testcase_26 AC 105 ms
39,780 KB
testcase_27 AC 95 ms
39,964 KB
testcase_28 AC 102 ms
39,828 KB
testcase_29 AC 104 ms
40,788 KB
testcase_30 AC 268 ms
46,036 KB
testcase_31 AC 262 ms
46,164 KB
testcase_32 AC 596 ms
46,012 KB
testcase_33 AC 598 ms
46,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0156{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int cnt = 0;
		ArrayList<Integer> ar = new ArrayList<Integer>();

		for(int i = 0; i < n; i++){
			ar.add(sc.nextInt());
		}

		for(int i = 0; i < m; i++){
			Collections.sort(ar);
			for(int j = 0; j < ar.size(); j++){
				if(ar.get(j) > 0){
					ar.set(j, ar.get(j) - 1);
					break;
				}
			}
		}
		for(int i = 0; i < ar.size(); i++){
			if(ar.get(i) == 0){
				cnt++;
			}
		}
		System.out.println(cnt);
	}
}
0