結果

問題 No.2334 Distinct Cards
ユーザー koarakko5555koarakko5555
提出日時 2023-06-02 22:31:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,096 KB
最終ジャッジ日時 2024-06-09 00:02:39
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,992 KB
testcase_01 AC 48 ms
53,376 KB
testcase_02 AC 47 ms
53,376 KB
testcase_03 AC 49 ms
53,376 KB
testcase_04 AC 47 ms
53,504 KB
testcase_05 AC 47 ms
53,248 KB
testcase_06 AC 47 ms
53,248 KB
testcase_07 AC 48 ms
54,144 KB
testcase_08 AC 49 ms
54,016 KB
testcase_09 AC 48 ms
53,632 KB
testcase_10 AC 48 ms
54,144 KB
testcase_11 AC 48 ms
53,760 KB
testcase_12 AC 99 ms
94,080 KB
testcase_13 AC 103 ms
95,104 KB
testcase_14 AC 105 ms
95,744 KB
testcase_15 AC 104 ms
95,488 KB
testcase_16 AC 103 ms
95,232 KB
testcase_17 AC 99 ms
99,328 KB
testcase_18 AC 102 ms
100,096 KB
testcase_19 AC 102 ms
99,968 KB
testcase_20 AC 80 ms
82,688 KB
testcase_21 AC 81 ms
82,560 KB
testcase_22 AC 82 ms
83,072 KB
testcase_23 AC 50 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

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

ans = 0
num = 0

Acv = list(Ac.values())
Acv.sort(reverse=True)
for c in Acv:
    #print(v, c)
    num += c
    ans += 1
    if K <= num:
        print(ans)
        exit()
0