結果

問題 No.2334 Distinct Cards
ユーザー 回転
提出日時 2025-08-15 17:37:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 111,072 KB
最終ジャッジ日時 2025-08-15 17:37:51
合計ジャッジ時間 3,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from itertools import accumulate
N,K = list(map(int,input().split()))
A = list(map(int,input().split()))

ca = Counter(A)
s = sorted(ca.values(),reverse=True)
S = [0] + list(accumulate(s)) + [10**18]

for i in range(len(S)):
	if(S[i] >= K):
		print(i)
		exit()
0