結果

問題 No.2334 Distinct Cards
ユーザー QroQro
提出日時 2023-06-09 16:54:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 97,832 KB
最終ジャッジ日時 2024-06-10 10:24:17
合計ジャッジ時間 2,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 33 ms
51,456 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 32 ms
52,480 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 32 ms
52,096 KB
testcase_06 AC 32 ms
51,456 KB
testcase_07 AC 33 ms
52,480 KB
testcase_08 AC 34 ms
53,120 KB
testcase_09 AC 32 ms
52,864 KB
testcase_10 AC 33 ms
52,480 KB
testcase_11 AC 33 ms
52,224 KB
testcase_12 AC 73 ms
93,856 KB
testcase_13 AC 76 ms
93,756 KB
testcase_14 AC 77 ms
93,952 KB
testcase_15 AC 74 ms
93,696 KB
testcase_16 AC 75 ms
94,060 KB
testcase_17 AC 73 ms
97,408 KB
testcase_18 AC 74 ms
97,832 KB
testcase_19 AC 74 ms
97,776 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 56 ms
81,756 KB
testcase_23 AC 34 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
CardDict={}
for i in range(N):
    if A[i] in CardDict:
        CardDict[A[i]]+=1
    else:
        CardDict[A[i]]=1

Asorted=list(CardDict.values())
Asorted.sort(reverse=True)
count=0
for i in range(len(Asorted)):
    if K-Asorted[i]>=0:
        K-=Asorted[i]
        count+=1

print(count)

0