結果

問題 No.2334 Distinct Cards
ユーザー Basin-BugBasin-Bug
提出日時 2023-07-12 11:02:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 100,488 KB
最終ジャッジ日時 2024-09-14 01:03:51
合計ジャッジ時間 3,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,304 KB
testcase_01 AC 42 ms
53,628 KB
testcase_02 AC 42 ms
54,352 KB
testcase_03 AC 43 ms
54,176 KB
testcase_04 AC 43 ms
54,524 KB
testcase_05 AC 44 ms
53,988 KB
testcase_06 AC 43 ms
54,176 KB
testcase_07 AC 44 ms
55,208 KB
testcase_08 AC 43 ms
55,116 KB
testcase_09 AC 44 ms
54,364 KB
testcase_10 AC 43 ms
54,300 KB
testcase_11 AC 44 ms
55,660 KB
testcase_12 AC 91 ms
94,720 KB
testcase_13 AC 90 ms
96,616 KB
testcase_14 AC 91 ms
96,660 KB
testcase_15 AC 92 ms
95,516 KB
testcase_16 AC 92 ms
96,536 KB
testcase_17 AC 87 ms
99,780 KB
testcase_18 AC 89 ms
100,488 KB
testcase_19 AC 88 ms
100,348 KB
testcase_20 AC 69 ms
84,500 KB
testcase_21 AC 68 ms
83,484 KB
testcase_22 AC 70 ms
82,928 KB
testcase_23 AC 44 ms
54,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N, K = map(int, input().split())
A = list(map(int, input().split()))

items = [k for k in Counter(A).values()]

items.sort(reverse = True)
ans = 0
cnt = 0
i = 0
while cnt < K:
  ans += 1
  cnt += items[i]
  i += 1
print(ans)
0