結果

問題 No.2334 Distinct Cards
ユーザー 倉
提出日時 2023-06-02 22:01:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,504 KB
最終ジャッジ日時 2024-06-08 23:06:50
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,656 KB
testcase_01 AC 44 ms
54,400 KB
testcase_02 AC 45 ms
54,912 KB
testcase_03 AC 44 ms
54,784 KB
testcase_04 AC 50 ms
54,656 KB
testcase_05 AC 45 ms
54,912 KB
testcase_06 AC 45 ms
54,912 KB
testcase_07 AC 49 ms
54,912 KB
testcase_08 AC 44 ms
55,680 KB
testcase_09 AC 46 ms
55,552 KB
testcase_10 AC 49 ms
55,040 KB
testcase_11 AC 43 ms
55,040 KB
testcase_12 AC 91 ms
95,616 KB
testcase_13 AC 97 ms
96,128 KB
testcase_14 AC 98 ms
96,496 KB
testcase_15 AC 102 ms
96,000 KB
testcase_16 AC 99 ms
96,000 KB
testcase_17 AC 93 ms
99,968 KB
testcase_18 AC 92 ms
101,504 KB
testcase_19 AC 95 ms
101,504 KB
testcase_20 AC 71 ms
83,456 KB
testcase_21 AC 68 ms
83,328 KB
testcase_22 AC 75 ms
83,328 KB
testcase_23 AC 46 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import sys
from functools import partial
# import pypyjit
# pypyjit.set_param('max_unroll_recursion = -1')

sys.setrecursionlimit(500005)
stdin = sys.stdin

ns = lambda: stdin.readline().strip()
ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
nz = lambda: list(map(lambda x: int(x)-1, stdin.readline().split())) # 遅い
printa = partial(print, sep="\n") # printa(*A) で各要素を改行して出力
mod = 1000000007 # 998244353
inf = 10 ** 18

N, K = na()
A = na()

C = Counter(A)

B = [c for c in C.values()]
B.sort(reverse=True)

agg = 0
for i, b in enumerate(B):
    agg += b
    if agg >= K:
        print(i+1)
        exit()
0