結果
問題 | No.2334 Distinct Cards |
ユーザー | tenten |
提出日時 | 2024-07-02 12:54:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 318 ms / 2,000 ms |
コード長 | 1,587 bytes |
コンパイル時間 | 2,522 ms |
コンパイル使用メモリ | 91,192 KB |
実行使用メモリ | 61,204 KB |
最終ジャッジ日時 | 2024-07-02 12:54:11 |
合計ジャッジ時間 | 7,504 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,684 KB |
testcase_01 | AC | 56 ms
50,636 KB |
testcase_02 | AC | 56 ms
50,700 KB |
testcase_03 | AC | 55 ms
50,388 KB |
testcase_04 | AC | 59 ms
50,664 KB |
testcase_05 | AC | 56 ms
50,632 KB |
testcase_06 | AC | 61 ms
50,764 KB |
testcase_07 | AC | 70 ms
51,100 KB |
testcase_08 | AC | 71 ms
50,924 KB |
testcase_09 | AC | 77 ms
51,400 KB |
testcase_10 | AC | 73 ms
50,996 KB |
testcase_11 | AC | 69 ms
51,264 KB |
testcase_12 | AC | 310 ms
59,308 KB |
testcase_13 | AC | 285 ms
59,056 KB |
testcase_14 | AC | 312 ms
59,356 KB |
testcase_15 | AC | 318 ms
58,928 KB |
testcase_16 | AC | 308 ms
58,944 KB |
testcase_17 | AC | 283 ms
60,976 KB |
testcase_18 | AC | 291 ms
60,764 KB |
testcase_19 | AC | 296 ms
61,204 KB |
testcase_20 | AC | 223 ms
56,192 KB |
testcase_21 | AC | 223 ms
56,384 KB |
testcase_22 | AC | 232 ms
56,148 KB |
testcase_23 | AC | 54 ms
50,692 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); Map<Integer, Integer> counts = new HashMap<>(); while (n-- > 0) { int x = sc.nextInt(); counts.put(x, counts.getOrDefault(x, 0) + 1); } Queue<Integer> queue = new PriorityQueue<>((a, b) -> b - a); queue.addAll(counts.values()); int ans = 0; while (queue.size() > 0 && k > 0) { ans++; k -= queue.poll(); } System.out.println(ans); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }