結果

問題 No.156 キャンディー・ボックス
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 00:17:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 2,919 ms
コンパイル使用メモリ 78,772 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-07-05 16:20:30
合計ジャッジ時間 7,697 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,780 KB
testcase_01 AC 132 ms
53,848 KB
testcase_02 AC 132 ms
54,104 KB
testcase_03 AC 131 ms
54,160 KB
testcase_04 AC 131 ms
54,052 KB
testcase_05 AC 140 ms
54,164 KB
testcase_06 AC 139 ms
54,256 KB
testcase_07 AC 139 ms
53,936 KB
testcase_08 AC 149 ms
53,912 KB
testcase_09 AC 141 ms
53,720 KB
testcase_10 AC 140 ms
54,300 KB
testcase_11 AC 138 ms
54,044 KB
testcase_12 AC 140 ms
53,820 KB
testcase_13 AC 138 ms
53,976 KB
testcase_14 AC 129 ms
54,132 KB
testcase_15 AC 126 ms
53,916 KB
testcase_16 AC 129 ms
54,060 KB
testcase_17 AC 116 ms
52,996 KB
testcase_18 AC 127 ms
54,104 KB
testcase_19 AC 121 ms
53,940 KB
testcase_20 AC 98 ms
52,120 KB
testcase_21 AC 115 ms
54,116 KB
testcase_22 AC 125 ms
53,664 KB
testcase_23 AC 120 ms
53,948 KB
testcase_24 AC 119 ms
53,876 KB
testcase_25 AC 116 ms
53,772 KB
testcase_26 AC 115 ms
53,800 KB
testcase_27 AC 113 ms
54,052 KB
testcase_28 AC 112 ms
53,736 KB
testcase_29 AC 112 ms
53,008 KB
testcase_30 AC 109 ms
53,424 KB
testcase_31 AC 134 ms
54,096 KB
testcase_32 AC 129 ms
53,652 KB
testcase_33 AC 127 ms
53,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no156{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,m,i,j,t,c[]=new int[10];
		n=stdIn.nextInt();
		m=stdIn.nextInt();
		for(i=0;i<n;i++) c[i]=stdIn.nextInt();
		for(i=0;i<n-1;i++) {
			for(j=n-1;j>i;j--) {
				if(c[j-1]>c[j]) {
					t=c[j-1];
					c[j-1]=c[j];
					c[j]=t;
				}
			}
		}
		for(i=0;m>0;i++) {
			while(c[i]>0&&m>0) {
				m--;
				c[i]--;
			}
		}
		if(c[i-1]>0) System.out.print(i-1);
		else System.out.print(i);
	}
}
0