結果

問題 No.2777 Wild Flush
ユーザー rlangevinrlangevin
提出日時 2024-06-07 21:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-12-26 06:56:44
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
C = Counter(A)
zero = C[0]
ma = 0
for k, v in C.items():
    if k == 0:
        continue
    ma = max(ma, v)
    
print("Yes") if ma + zero >= K else print("No")
0