結果

問題 No.2334 Distinct Cards
ユーザー NPNP
提出日時 2023-06-03 15:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 82,672 KB
最終ジャッジ日時 2024-06-09 03:37:39
合計ジャッジ時間 2,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,036 KB
testcase_01 AC 30 ms
53,740 KB
testcase_02 AC 30 ms
52,836 KB
testcase_03 AC 30 ms
51,992 KB
testcase_04 AC 29 ms
52,884 KB
testcase_05 AC 30 ms
52,284 KB
testcase_06 AC 29 ms
53,228 KB
testcase_07 AC 29 ms
53,040 KB
testcase_08 AC 29 ms
52,628 KB
testcase_09 AC 30 ms
53,192 KB
testcase_10 AC 33 ms
52,832 KB
testcase_11 AC 31 ms
52,756 KB
testcase_12 AC 58 ms
81,868 KB
testcase_13 AC 60 ms
82,336 KB
testcase_14 AC 59 ms
82,180 KB
testcase_15 AC 59 ms
82,568 KB
testcase_16 AC 60 ms
82,548 KB
testcase_17 AC 51 ms
81,424 KB
testcase_18 AC 54 ms
82,152 KB
testcase_19 AC 53 ms
82,672 KB
testcase_20 AC 52 ms
81,460 KB
testcase_21 AC 52 ms
80,496 KB
testcase_22 AC 55 ms
81,880 KB
testcase_23 AC 31 ms
53,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
cards=list(map(int, input().split()))
counts = [0]*(N + 1)
for i in range(N):
    counts[cards[i]]+=1
counts.sort(reverse=True)
total=0
num_types=0
for count in counts:
    if total>=K:
        break
    total += count
    num_types+=1
print(num_types)


0