結果

問題 No.2334 Distinct Cards
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-06-02 21:53:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-06-08 22:52:39
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 43 ms
53,888 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 42 ms
54,144 KB
testcase_07 AC 42 ms
54,272 KB
testcase_08 AC 44 ms
54,144 KB
testcase_09 AC 43 ms
54,784 KB
testcase_10 AC 43 ms
54,400 KB
testcase_11 AC 43 ms
54,400 KB
testcase_12 AC 118 ms
103,424 KB
testcase_13 AC 124 ms
103,296 KB
testcase_14 AC 122 ms
103,040 KB
testcase_15 AC 124 ms
103,160 KB
testcase_16 AC 121 ms
103,572 KB
testcase_17 AC 106 ms
109,884 KB
testcase_18 AC 104 ms
109,952 KB
testcase_19 AC 107 ms
109,696 KB
testcase_20 AC 66 ms
82,944 KB
testcase_21 AC 67 ms
83,328 KB
testcase_22 AC 68 ms
83,072 KB
testcase_23 AC 40 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18
from collections import *

n,k = MI()
a = list(MI())

cnt = Counter(a)
cnt = sorted(cnt.items(), key=lambda x:x[1], reverse=True)

now = 0
ans = 0
for key, value in cnt:
    if now >= k:
        break
    now += value
    ans += 1
print(ans)
0