結果

問題 No.2334 Distinct Cards
ユーザー 👑 p-adicp-adic
提出日時 2023-06-02 21:25:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,848 KB
最終ジャッジ日時 2024-12-28 16:20:19
合計ジャッジ時間 2,230 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 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 30 ms
10,624 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 29 ms
10,496 KB
testcase_11 WA -
testcase_12 AC 82 ms
20,396 KB
testcase_13 AC 79 ms
20,652 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 74 ms
20,524 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 74 ms
20,848 KB
testcase_21 AC 71 ms
20,464 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