結果

問題 No.2334 Distinct Cards
ユーザー 310icecrystal310icecrystal
提出日時 2023-06-03 03:49:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 109,968 KB
最終ジャッジ日時 2024-06-09 03:17:32
合計ジャッジ時間 3,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,008 KB
testcase_01 AC 41 ms
54,852 KB
testcase_02 AC 38 ms
54,752 KB
testcase_03 AC 40 ms
54,860 KB
testcase_04 AC 39 ms
54,124 KB
testcase_05 AC 39 ms
53,788 KB
testcase_06 AC 40 ms
54,328 KB
testcase_07 AC 44 ms
54,944 KB
testcase_08 AC 42 ms
54,336 KB
testcase_09 AC 42 ms
54,508 KB
testcase_10 AC 43 ms
55,340 KB
testcase_11 AC 42 ms
54,392 KB
testcase_12 AC 122 ms
103,124 KB
testcase_13 AC 121 ms
103,268 KB
testcase_14 AC 130 ms
102,728 KB
testcase_15 AC 120 ms
103,188 KB
testcase_16 AC 121 ms
103,236 KB
testcase_17 AC 110 ms
109,968 KB
testcase_18 AC 107 ms
109,740 KB
testcase_19 AC 118 ms
109,788 KB
testcase_20 AC 75 ms
84,172 KB
testcase_21 AC 73 ms
84,040 KB
testcase_22 AC 73 ms
82,916 KB
testcase_23 AC 41 ms
54,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))

from collections import Counter
A_count = Counter(A)

A_count_sorted = sorted(A_count.items(),key = lambda x:x[1],reverse=True)
i = 0
while K >= 1:
    K -= A_count_sorted[i][1]
    i += 1

print(i)
0