結果

問題 No.2334 Distinct Cards
ユーザー Akijin_007Akijin_007
提出日時 2023-06-02 21:29:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 100,736 KB
最終ジャッジ日時 2024-06-08 22:19:18
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,120 KB
testcase_01 AC 47 ms
53,376 KB
testcase_02 AC 47 ms
53,248 KB
testcase_03 AC 48 ms
53,504 KB
testcase_04 AC 48 ms
53,888 KB
testcase_05 AC 48 ms
53,504 KB
testcase_06 AC 48 ms
53,504 KB
testcase_07 AC 49 ms
54,016 KB
testcase_08 AC 49 ms
54,016 KB
testcase_09 AC 50 ms
53,632 KB
testcase_10 AC 51 ms
54,272 KB
testcase_11 AC 50 ms
54,144 KB
testcase_12 AC 102 ms
94,592 KB
testcase_13 AC 103 ms
95,488 KB
testcase_14 AC 107 ms
95,872 KB
testcase_15 AC 106 ms
95,360 KB
testcase_16 AC 106 ms
95,488 KB
testcase_17 AC 101 ms
99,456 KB
testcase_18 AC 105 ms
100,736 KB
testcase_19 AC 104 ms
100,480 KB
testcase_20 AC 82 ms
82,944 KB
testcase_21 AC 82 ms
82,816 KB
testcase_22 AC 81 ms
82,816 KB
testcase_23 AC 49 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import Counter

c = Counter(A)

v = sorted(c.values(), reverse=True)

ans = 0
s = 0
for i in range(len(v)):
    ans += 1
    s += v[i]
    if s >= K:
        break
print(ans)
0