結果

問題 No.156 キャンディー・ボックス
ユーザー rf141rf141
提出日時 2015-08-10 02:33:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 3,723 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,948 KB
最終ジャッジ日時 2024-07-05 09:18:20
合計ジャッジ時間 8,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,528 KB
testcase_01 AC 128 ms
41,272 KB
testcase_02 AC 116 ms
41,480 KB
testcase_03 AC 128 ms
41,300 KB
testcase_04 AC 129 ms
41,948 KB
testcase_05 AC 139 ms
41,368 KB
testcase_06 AC 134 ms
41,376 KB
testcase_07 AC 137 ms
41,156 KB
testcase_08 AC 142 ms
41,412 KB
testcase_09 AC 135 ms
41,100 KB
testcase_10 AC 136 ms
41,488 KB
testcase_11 AC 134 ms
41,284 KB
testcase_12 AC 133 ms
41,416 KB
testcase_13 AC 149 ms
41,164 KB
testcase_14 AC 135 ms
41,484 KB
testcase_15 AC 134 ms
41,552 KB
testcase_16 AC 136 ms
41,532 KB
testcase_17 AC 135 ms
41,648 KB
testcase_18 AC 136 ms
41,512 KB
testcase_19 AC 143 ms
41,592 KB
testcase_20 AC 129 ms
41,372 KB
testcase_21 AC 132 ms
41,120 KB
testcase_22 AC 135 ms
41,372 KB
testcase_23 AC 130 ms
41,144 KB
testcase_24 AC 127 ms
41,532 KB
testcase_25 AC 129 ms
41,592 KB
testcase_26 AC 128 ms
41,432 KB
testcase_27 AC 129 ms
41,392 KB
testcase_28 AC 129 ms
41,616 KB
testcase_29 AC 131 ms
41,480 KB
testcase_30 AC 140 ms
41,244 KB
testcase_31 AC 146 ms
41,836 KB
testcase_32 AC 148 ms
41,496 KB
testcase_33 AC 152 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class candy{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int m = scan.nextInt();
		System.out.println(docandy(n,m,scan));
	}
	public static int docandy(int n,int m,Scanner scan){
		int[] candyBox = new int[n];
		for(int i = 0; i < n; i++){
			candyBox[i] = scan.nextInt();
		}
		Arrays.sort(candyBox);
		int count=0,now=0;
		while(count<m && now < n){
			if(candyBox[now]!=0){
				count++;
				candyBox[now]-=1;	
			}
			if(candyBox[now]==0){
				now++;
			}
		}
		return now;
	}
}
0