結果

問題 No.2334 Distinct Cards
ユーザー miya145592miya145592
提出日時 2023-06-02 22:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 99,096 KB
最終ジャッジ日時 2024-06-09 00:03:15
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,624 KB
testcase_01 AC 38 ms
52,768 KB
testcase_02 AC 38 ms
53,208 KB
testcase_03 AC 37 ms
52,704 KB
testcase_04 AC 37 ms
52,408 KB
testcase_05 AC 37 ms
52,232 KB
testcase_06 AC 38 ms
51,820 KB
testcase_07 AC 37 ms
52,344 KB
testcase_08 AC 37 ms
52,488 KB
testcase_09 AC 37 ms
52,760 KB
testcase_10 AC 38 ms
52,800 KB
testcase_11 AC 38 ms
54,188 KB
testcase_12 AC 85 ms
92,988 KB
testcase_13 AC 85 ms
93,020 KB
testcase_14 AC 86 ms
95,520 KB
testcase_15 AC 80 ms
94,532 KB
testcase_16 AC 82 ms
93,520 KB
testcase_17 AC 76 ms
97,572 KB
testcase_18 AC 80 ms
98,564 KB
testcase_19 AC 80 ms
99,096 KB
testcase_20 AC 59 ms
81,768 KB
testcase_21 AC 62 ms
82,712 KB
testcase_22 AC 62 ms
82,064 KB
testcase_23 AC 37 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
D = dict()
for a in A:
    if a not in D:
        D[a]=1
    else:
        D[a]+=1
V = list(D.values())
V.sort()
cnt = 0
while K>0:
    v = V.pop()
    K-=v
    cnt+=1
print(cnt)

0