結果
| 問題 |
No.2334 Distinct Cards
|
| コンテスト | |
| ユーザー |
とりゐ
|
| 提出日時 | 2023-06-02 21:21:31 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 87 ms / 2,000 ms |
| コード長 | 266 bytes |
| コンパイル時間 | 472 ms |
| コンパイル使用メモリ | 82,440 KB |
| 実行使用メモリ | 105,600 KB |
| 最終ジャッジ日時 | 2024-12-28 16:00:03 |
| 合計ジャッジ時間 | 2,642 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
N,K=map(int,input().split())
a=list(map(int,input().split()))
cnt={}
for i in a:
if i not in cnt:
cnt[i]=0
cnt[i]+=1
c=[]
for i in cnt:
c.append(cnt[i])
c.sort(reverse=True)
res=0
for i in range(len(c)):
res+=c[i]
if res>=K:
print(i+1)
exit()
とりゐ