結果

問題 No.2334 Distinct Cards
ユーザー shogo314shogo314
提出日時 2023-06-10 00:20:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 109,728 KB
最終ジャッジ日時 2024-06-10 15:15:12
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,976 KB
testcase_01 AC 36 ms
53,980 KB
testcase_02 AC 36 ms
53,540 KB
testcase_03 AC 36 ms
54,856 KB
testcase_04 AC 36 ms
54,332 KB
testcase_05 AC 36 ms
54,076 KB
testcase_06 AC 35 ms
54,052 KB
testcase_07 AC 39 ms
56,724 KB
testcase_08 AC 37 ms
55,952 KB
testcase_09 AC 38 ms
56,432 KB
testcase_10 AC 38 ms
55,764 KB
testcase_11 AC 39 ms
55,660 KB
testcase_12 AC 227 ms
102,500 KB
testcase_13 AC 213 ms
102,316 KB
testcase_14 AC 224 ms
102,348 KB
testcase_15 AC 223 ms
102,488 KB
testcase_16 AC 217 ms
102,504 KB
testcase_17 AC 304 ms
109,648 KB
testcase_18 AC 300 ms
109,728 KB
testcase_19 AC 307 ms
109,608 KB
testcase_20 AC 63 ms
83,196 KB
testcase_21 AC 62 ms
83,704 KB
testcase_22 AC 61 ms
83,588 KB
testcase_23 AC 37 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, K = map(int, input().split())
A = list(map(int, input().split()))
d = defaultdict(int)
for i in A:
    d[i] += 1
t = sorted([(j, i) for i, j in d.items()], reverse=True)
ans = 0
for j, i in t:
    K -= j
    ans += 1
    if K <= 0:
        break
print(ans)
0