結果

問題 No.2334 Distinct Cards
ユーザー gr1msl3ygr1msl3y
提出日時 2023-06-10 00:02:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 125,960 KB
最終ジャッジ日時 2025-01-02 06:28:04
合計ジャッジ時間 3,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,540 KB
testcase_01 AC 37 ms
54,892 KB
testcase_02 AC 40 ms
54,280 KB
testcase_03 AC 39 ms
53,732 KB
testcase_04 AC 38 ms
54,152 KB
testcase_05 AC 40 ms
54,380 KB
testcase_06 AC 41 ms
54,204 KB
testcase_07 AC 40 ms
54,620 KB
testcase_08 AC 39 ms
55,464 KB
testcase_09 AC 40 ms
55,968 KB
testcase_10 AC 39 ms
54,520 KB
testcase_11 AC 39 ms
56,060 KB
testcase_12 AC 124 ms
112,896 KB
testcase_13 AC 124 ms
112,896 KB
testcase_14 AC 125 ms
112,336 KB
testcase_15 AC 122 ms
112,760 KB
testcase_16 AC 126 ms
112,624 KB
testcase_17 AC 112 ms
125,960 KB
testcase_18 AC 115 ms
125,716 KB
testcase_19 AC 116 ms
125,864 KB
testcase_20 AC 66 ms
83,428 KB
testcase_21 AC 64 ms
84,044 KB
testcase_22 AC 65 ms
83,264 KB
testcase_23 AC 36 ms
55,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N, K = map(int, input().split())
A = list(map(int, input().split()))
C = Counter(A)
S = sorted(list(set(A)), key=lambda x: -C[x])
ans = 0
ct = 0
for s in S:
    if ct >= K:
        break
    ct += C[s]
    ans += 1

print(ans)
0