結果
問題 | No.156 キャンディー・ボックス |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-29 20:25:44 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 1,043 bytes |
コンパイル時間 | 2,003 ms |
コンパイル使用メモリ | 79,784 KB |
実行使用メモリ | 38,380 KB |
最終ジャッジ日時 | 2024-07-05 16:01:37 |
合計ジャッジ時間 | 5,110 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 30 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Scanner; import java.util.stream.Stream; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); String[] inputs = reader.readLine().split(" "); int N = Integer.parseInt(inputs[0]); int M = Integer.parseInt(inputs[1]); inputs = reader.readLine().split(" "); int[] boxes = Stream.of(inputs).mapToInt(Integer::parseInt).toArray(); Arrays.sort(boxes); int index = 0; while (M != 0) { if (boxes[index] == 0) { index += 1; } else { boxes[index] -= 1; M -= 1; } } if (boxes[index] == 0) { System.out.println(index + 1); } else { System.out.println(index); } } }