結果
問題 | No.156 キャンディー・ボックス |
ユーザー | nCk_cv |
提出日時 | 2015-04-30 16:49:13 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 2,026 ms |
コンパイル使用メモリ | 74,520 KB |
実行使用メモリ | 41,720 KB |
最終ジャッジ日時 | 2024-07-05 17:11:47 |
合計ジャッジ時間 | 6,690 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
40,844 KB |
testcase_01 | AC | 104 ms
41,128 KB |
testcase_02 | AC | 105 ms
41,048 KB |
testcase_03 | AC | 102 ms
40,668 KB |
testcase_04 | RE | - |
testcase_05 | AC | 103 ms
40,512 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 111 ms
41,296 KB |
testcase_19 | AC | 110 ms
41,040 KB |
testcase_20 | AC | 107 ms
39,904 KB |
testcase_21 | AC | 107 ms
41,284 KB |
testcase_22 | AC | 110 ms
41,176 KB |
testcase_23 | AC | 108 ms
41,244 KB |
testcase_24 | AC | 104 ms
39,948 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | AC | 102 ms
40,100 KB |
testcase_29 | AC | 105 ms
40,152 KB |
testcase_30 | AC | 111 ms
40,008 KB |
testcase_31 | AC | 109 ms
40,808 KB |
testcase_32 | AC | 131 ms
41,336 KB |
testcase_33 | RE | - |
ソースコード
import java.util.*; public class Main { static int[][] map; static int[][] ans; static int[] vx = new int[] {1,0,-1,0}; static int[] vy = new int[] {0,1,0,-1}; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[] list = new int[n]; for(int i = 0; i < n; i++) { list[i] = sc.nextInt(); } Arrays.sort(list); int count = 0; for(int i = 0; i < m; i++) { list[count]--; while(list[count] == 0) { count++; } } System.out.println(count); } }