結果

問題 No.156 キャンディー・ボックス
ユーザー 37zigen37zigen
提出日時 2016-03-31 18:01:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 75,568 KB
実行使用メモリ 45,916 KB
最終ジャッジ日時 2024-07-05 15:48:17
合計ジャッジ時間 8,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,964 KB
testcase_01 AC 122 ms
41,004 KB
testcase_02 AC 98 ms
40,356 KB
testcase_03 AC 104 ms
41,232 KB
testcase_04 AC 103 ms
41,012 KB
testcase_05 AC 160 ms
44,632 KB
testcase_06 AC 191 ms
45,672 KB
testcase_07 AC 175 ms
45,548 KB
testcase_08 AC 170 ms
45,080 KB
testcase_09 AC 156 ms
44,656 KB
testcase_10 AC 172 ms
45,368 KB
testcase_11 AC 160 ms
44,904 KB
testcase_12 AC 180 ms
45,708 KB
testcase_13 AC 172 ms
44,752 KB
testcase_14 AC 159 ms
44,784 KB
testcase_15 AC 176 ms
45,620 KB
testcase_16 AC 164 ms
44,964 KB
testcase_17 AC 165 ms
45,032 KB
testcase_18 AC 146 ms
42,612 KB
testcase_19 AC 156 ms
43,816 KB
testcase_20 AC 122 ms
41,296 KB
testcase_21 AC 131 ms
41,816 KB
testcase_22 AC 145 ms
43,044 KB
testcase_23 AC 138 ms
41,100 KB
testcase_24 AC 108 ms
41,072 KB
testcase_25 AC 95 ms
40,020 KB
testcase_26 AC 104 ms
40,808 KB
testcase_27 AC 104 ms
41,256 KB
testcase_28 AC 95 ms
40,320 KB
testcase_29 AC 105 ms
41,464 KB
testcase_30 AC 216 ms
45,820 KB
testcase_31 AC 193 ms
45,888 KB
testcase_32 AC 365 ms
45,916 KB
testcase_33 AC 389 ms
45,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder156;
import java.util.PriorityQueue;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int m=sc.nextInt();
		PriorityQueue<Integer> pq=new PriorityQueue<>();
		for(int i=0;i<n;i++){
			pq.add(sc.nextInt());
		}
		int count=0;
		for(int i=0;i<m;i++){
			int nnn=pq.poll();
			nnn--;
			if(nnn==0){
				count++;
				if(pq.isEmpty())break;
				continue;
			}
			pq.add(nnn);
			
		}
		System.out.println(count);
	}
}
0