結果

問題 No.2334 Distinct Cards
ユーザー 👑 p-adicp-adic
提出日時 2023-06-02 21:25:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,980 KB
最終ジャッジ日時 2024-06-08 22:15:31
合計ジャッジ時間 2,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 31 ms
10,624 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 31 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 85 ms
20,652 KB
testcase_13 AC 89 ms
20,396 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 85 ms
20,396 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 82 ms
20,588 KB
testcase_21 AC 84 ms
20,716 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
def J():
	return map(int,I().split())
N,K=J()
A=list(J())
B=[0]*(N+1)
for a in A:B[a]+=1
a=0
for b in sorted(B,reverse=True):
	a+=1
	if K<b:print(a),exit(0)
	K-=b
0