結果

問題 No.2334 Distinct Cards
ユーザー MottchanMottchan
提出日時 2023-06-02 21:32:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,256 KB
最終ジャッジ日時 2024-06-08 22:22:40
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,120 KB
testcase_01 AC 43 ms
53,120 KB
testcase_02 AC 43 ms
53,248 KB
testcase_03 AC 44 ms
53,760 KB
testcase_04 AC 43 ms
53,120 KB
testcase_05 AC 43 ms
53,120 KB
testcase_06 AC 43 ms
53,376 KB
testcase_07 AC 44 ms
54,400 KB
testcase_08 AC 42 ms
54,272 KB
testcase_09 AC 44 ms
54,272 KB
testcase_10 AC 43 ms
54,272 KB
testcase_11 AC 43 ms
54,016 KB
testcase_12 AC 121 ms
104,832 KB
testcase_13 AC 125 ms
104,576 KB
testcase_14 AC 124 ms
102,400 KB
testcase_15 AC 129 ms
104,448 KB
testcase_16 AC 125 ms
104,576 KB
testcase_17 AC 115 ms
112,256 KB
testcase_18 AC 117 ms
112,256 KB
testcase_19 AC 116 ms
112,256 KB
testcase_20 AC 71 ms
83,072 KB
testcase_21 AC 72 ms
82,816 KB
testcase_22 AC 72 ms
83,200 KB
testcase_23 AC 41 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
l=list(map(int,input().split()))
from collections import defaultdict
d=defaultdict(int)

for i in range(n):
    d[l[i]]+=1

ans=[]
for key,val in d.items():
    ans.append((key,val))

ans.sort(key=lambda x: -x[1])
cnt=0
while k>0:
    k-= ans[cnt][1]
    cnt+=1
else:
    print(cnt)
0