結果

問題 No.2334 Distinct Cards
ユーザー H20H20
提出日時 2023-06-02 21:47:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-06-08 22:42:44
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 41 ms
54,016 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 42 ms
53,632 KB
testcase_07 AC 42 ms
54,144 KB
testcase_08 AC 43 ms
54,268 KB
testcase_09 AC 45 ms
54,272 KB
testcase_10 AC 43 ms
54,656 KB
testcase_11 AC 42 ms
54,272 KB
testcase_12 AC 94 ms
99,472 KB
testcase_13 AC 91 ms
99,840 KB
testcase_14 AC 94 ms
100,548 KB
testcase_15 AC 93 ms
100,096 KB
testcase_16 AC 94 ms
99,840 KB
testcase_17 AC 89 ms
106,496 KB
testcase_18 AC 89 ms
107,392 KB
testcase_19 AC 88 ms
107,264 KB
testcase_20 AC 67 ms
83,072 KB
testcase_21 AC 65 ms
83,456 KB
testcase_22 AC 68 ms
83,200 KB
testcase_23 AC 43 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,K = map(int, input().split())
A = list(map(int, input().split())) 
CA = collections.Counter(A)
L = []
for v in CA.values():
    L.append(v)
L.sort(reverse=True)
ans = 0
for i,l in enumerate(L):
    K-=l    
    if K<=0:
        print(i+1)
        exit()
0