結果

問題 No.156 キャンディー・ボックス
ユーザー TakaTaka
提出日時 2016-04-12 15:42:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 54,648 KB
最終ジャッジ日時 2024-10-04 07:18:42
合計ジャッジ時間 7,866 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,060 KB
testcase_01 AC 113 ms
54,236 KB
testcase_02 AC 110 ms
53,748 KB
testcase_03 AC 115 ms
54,132 KB
testcase_04 AC 120 ms
54,028 KB
testcase_05 AC 129 ms
54,412 KB
testcase_06 AC 147 ms
53,716 KB
testcase_07 AC 126 ms
53,952 KB
testcase_08 AC 133 ms
53,696 KB
testcase_09 AC 132 ms
53,976 KB
testcase_10 AC 146 ms
54,200 KB
testcase_11 AC 133 ms
54,136 KB
testcase_12 AC 137 ms
54,648 KB
testcase_13 AC 140 ms
54,004 KB
testcase_14 AC 139 ms
54,192 KB
testcase_15 AC 122 ms
53,100 KB
testcase_16 AC 126 ms
54,124 KB
testcase_17 AC 135 ms
54,112 KB
testcase_18 AC 139 ms
54,320 KB
testcase_19 AC 159 ms
53,892 KB
testcase_20 AC 127 ms
54,096 KB
testcase_21 AC 128 ms
54,072 KB
testcase_22 AC 134 ms
54,120 KB
testcase_23 AC 129 ms
53,948 KB
testcase_24 AC 119 ms
53,764 KB
testcase_25 AC 125 ms
54,076 KB
testcase_26 AC 131 ms
54,072 KB
testcase_27 AC 122 ms
54,104 KB
testcase_28 AC 122 ms
53,992 KB
testcase_29 AC 124 ms
54,000 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		
		int k, num=0, min_naka=0, cnt=0;
		int[] c;
		int x=N, y=M, z=0;
		c= new int[x];
		
		for(int i=0; i<x; i++){
			c[i]=sc.nextInt();
		}
		
		for(int j=1; j<=y; j++){
			
			int min=100001;
			
			for(k=0; k<x; k++){
				if(c[k]!=0 && min>c[k]){
					min=c[k];
					num=k;
					}
			}
					min--;
					c[num]=min;
					
					if(c[num]==0){
						cnt++;
						}
				}
				System.out.println(cnt);
    }
}
0