結果

問題 No.2334 Distinct Cards
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-02 21:58:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,400 KB
最終ジャッジ日時 2024-06-08 23:00:12
合計ジャッジ時間 2,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,104 KB
testcase_01 AC 47 ms
56,148 KB
testcase_02 AC 46 ms
55,880 KB
testcase_03 AC 47 ms
56,416 KB
testcase_04 AC 46 ms
56,724 KB
testcase_05 AC 45 ms
56,052 KB
testcase_06 AC 47 ms
56,692 KB
testcase_07 AC 51 ms
56,508 KB
testcase_08 AC 47 ms
56,492 KB
testcase_09 AC 46 ms
57,472 KB
testcase_10 AC 47 ms
56,796 KB
testcase_11 AC 46 ms
57,220 KB
testcase_12 AC 93 ms
96,224 KB
testcase_13 AC 95 ms
96,960 KB
testcase_14 AC 97 ms
96,744 KB
testcase_15 AC 96 ms
96,348 KB
testcase_16 AC 95 ms
97,196 KB
testcase_17 AC 89 ms
100,968 KB
testcase_18 AC 91 ms
101,156 KB
testcase_19 AC 90 ms
101,400 KB
testcase_20 AC 73 ms
84,568 KB
testcase_21 AC 71 ms
85,616 KB
testcase_22 AC 70 ms
84,256 KB
testcase_23 AC 47 ms
55,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,K = map(int,input().split())
A = list(map(int,input().split()))
C = Counter(A)
V = list(C.values())
V.sort(reverse=True)
cnt = 0
x = 0
while x<K:
    x += V[cnt]
    cnt += 1
print(cnt)
0