結果
問題 |
No.2334 Distinct Cards
|
ユーザー |
|
提出日時 | 2023-06-03 16:55:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 83 ms / 2,000 ms |
コード長 | 221 bytes |
コンパイル時間 | 266 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 98,048 KB |
最終ジャッジ日時 | 2024-12-29 03:08:19 |
合計ジャッジ時間 | 2,499 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
N,K = map(int,input().split()) a= list(map(int,input().split())) d = dict() for b in a: if b in d: d[b] += 1 else: d[b] = 1 l = sorted(d.values()) ans = 0 now = 0 while now < K: ans += 1 now += l.pop() print(ans)