結果

問題 No.2334 Distinct Cards
ユーザー えいじえいじ
提出日時 2023-10-04 23:07:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 10,564 KB
実行使用メモリ 23,624 KB
最終ジャッジ日時 2023-10-04 23:07:13
合計ジャッジ時間 4,106 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,580 KB
testcase_01 AC 19 ms
8,452 KB
testcase_02 AC 19 ms
8,656 KB
testcase_03 AC 19 ms
8,628 KB
testcase_04 AC 19 ms
8,612 KB
testcase_05 AC 19 ms
8,620 KB
testcase_06 AC 18 ms
8,632 KB
testcase_07 AC 19 ms
8,620 KB
testcase_08 AC 19 ms
8,756 KB
testcase_09 AC 19 ms
8,620 KB
testcase_10 AC 19 ms
8,648 KB
testcase_11 AC 19 ms
8,708 KB
testcase_12 AC 71 ms
19,844 KB
testcase_13 AC 73 ms
19,852 KB
testcase_14 AC 82 ms
19,864 KB
testcase_15 AC 74 ms
20,004 KB
testcase_16 AC 69 ms
19,920 KB
testcase_17 AC 65 ms
23,572 KB
testcase_18 AC 78 ms
23,624 KB
testcase_19 AC 91 ms
23,444 KB
testcase_20 AC 60 ms
19,972 KB
testcase_21 AC 60 ms
20,128 KB
testcase_22 AC 61 ms
20,040 KB
testcase_23 AC 19 ms
8,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n, k = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]
c = sorted(Counter(a).values())[::-1]
ans = 1
for cc in c:
    k -= cc
    if k <= 0:
        print(ans)
        break
    else:
        ans += 1
0