結果

問題 No.2777 Wild Flush
ユーザー 👑 amentorimaru
提出日時 2024-06-06 20:50:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,268 KB
最終ジャッジ日時 2024-12-24 17:50:02
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import collections
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())

def main():
    n, k = read_values()
    a = read_list()
    c = collections.Counter(a)
    c0 = c[0]
    # c0 = c.get(0,0)
    c[0] = 0
    print('YNeos'[c0+max(c.values())<k::2])
    
if __name__ == "__main__":
    main()
0