結果

問題 No.2334 Distinct Cards
ユーザー anastaanasta
提出日時 2023-06-16 20:43:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,840 KB
最終ジャッジ日時 2024-06-24 12:22:34
合計ジャッジ時間 2,978 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 106 ms
21,280 KB
testcase_13 AC 109 ms
21,452 KB
testcase_14 AC 117 ms
21,460 KB
testcase_15 AC 107 ms
21,332 KB
testcase_16 AC 102 ms
21,448 KB
testcase_17 AC 105 ms
26,752 KB
testcase_18 AC 119 ms
26,840 KB
testcase_19 AC 133 ms
26,624 KB
testcase_20 AC 81 ms
20,724 KB
testcase_21 AC 83 ms
20,748 KB
testcase_22 AC 81 ms
20,724 KB
testcase_23 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N,K=map(lambda x: int(x), input().split())

ct = 0
tmp = 0

for p in collections.Counter(list(map(lambda x: int(x), input().split()))).most_common():
	
	ct+=1
	tmp += p[1]

	if tmp >= K:
		break

print(ct)
0