結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,792 KB
testcase_01 AC 40 ms
53,296 KB
testcase_02 AC 39 ms
54,176 KB
testcase_03 AC 40 ms
53,500 KB
testcase_04 AC 40 ms
53,752 KB
testcase_05 AC 40 ms
54,656 KB
testcase_06 AC 41 ms
53,748 KB
testcase_07 AC 41 ms
55,700 KB
testcase_08 AC 44 ms
55,000 KB
testcase_09 AC 42 ms
55,136 KB
testcase_10 AC 38 ms
55,680 KB
testcase_11 AC 38 ms
54,916 KB
testcase_12 AC 120 ms
112,368 KB
testcase_13 AC 121 ms
112,204 KB
testcase_14 AC 123 ms
111,684 KB
testcase_15 AC 127 ms
112,204 KB
testcase_16 AC 122 ms
112,236 KB
testcase_17 AC 109 ms
125,384 KB
testcase_18 AC 113 ms
125,512 KB
testcase_19 AC 113 ms
125,396 KB
testcase_20 AC 63 ms
84,792 KB
testcase_21 AC 62 ms
83,240 KB
testcase_22 AC 63 ms
83,636 KB
testcase_23 AC 40 ms
53,976 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