結果
| 問題 |
No.2334 Distinct Cards
|
| コンテスト | |
| ユーザー |
sepa38
|
| 提出日時 | 2023-06-02 21:22:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 114 ms / 2,000 ms |
| コード長 | 246 bytes |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 100,224 KB |
| 最終ジャッジ日時 | 2024-12-28 16:05:13 |
| 合計ジャッジ時間 | 3,050 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
from collections import Counter
n, k = map(int, input().split())
a = list(map(int, input().split()))
c = Counter(a)
ls = list(c.values())
ls.sort(reverse = True)
s = 0
for i in range(len(ls)):
s += ls[i]
if s >= k:
print(i + 1)
exit()
sepa38