結果
| 問題 | 
                            No.2777 Wild Flush
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2024-06-07 21:48:51 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 118 ms / 2,000 ms | 
| コード長 | 190 bytes | 
| コンパイル時間 | 501 ms | 
| コンパイル使用メモリ | 82,048 KB | 
| 実行使用メモリ | 99,456 KB | 
| 最終ジャッジ日時 | 2024-12-26 07:43:24 | 
| 合計ジャッジ時間 | 4,018 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 5 | 
| other | AC * 24 | 
ソースコード
from collections import Counter
n, k = map(int, input().split())
a = list(map(int, input().split()))
c = Counter(a)
print('Yes' if (max([c[i] for i in range(1, n+1)]) + c[0]) >= k else 'No')