結果

問題 No.2334 Distinct Cards
ユーザー ks2mks2m
提出日時 2023-06-02 21:22:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 3,021 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 49,204 KB
最終ジャッジ日時 2024-06-08 22:09:11
合計ジャッジ時間 6,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,112 KB
testcase_01 AC 47 ms
36,748 KB
testcase_02 AC 49 ms
36,976 KB
testcase_03 AC 47 ms
37,112 KB
testcase_04 AC 48 ms
37,160 KB
testcase_05 AC 47 ms
36,720 KB
testcase_06 AC 47 ms
36,720 KB
testcase_07 AC 51 ms
37,000 KB
testcase_08 AC 52 ms
36,708 KB
testcase_09 AC 49 ms
37,288 KB
testcase_10 AC 51 ms
36,832 KB
testcase_11 AC 52 ms
37,204 KB
testcase_12 AC 214 ms
49,072 KB
testcase_13 AC 207 ms
48,892 KB
testcase_14 AC 212 ms
48,976 KB
testcase_15 AC 207 ms
48,968 KB
testcase_16 AC 221 ms
48,884 KB
testcase_17 AC 206 ms
48,996 KB
testcase_18 AC 196 ms
48,920 KB
testcase_19 AC 209 ms
49,032 KB
testcase_20 AC 209 ms
49,204 KB
testcase_21 AC 216 ms
48,840 KB
testcase_22 AC 213 ms
48,972 KB
testcase_23 AC 50 ms
37,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int k = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		int[] c = new int[n + 1];
		for (int i = 0; i < n; i++) {
			int a = Integer.parseInt(sa[i]);
			c[a]++;
		}
		br.close();

		Arrays.sort(c);
		int ans = 0;
		for (int i = n; i >= 0; i--) {
			ans++;
			k -= c[i];
			if (k <= 0) {
				break;
			}
		}
		System.out.println(ans);
	}
}
0