結果

問題 No.2777 Wild Flush
コンテスト
ユーザー 👑 amentorimaru
提出日時 2024-05-26 15:08:20
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 363 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 225 ms
コンパイル使用メモリ 85,504 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2026-05-30 13:03:23
合計ジャッジ時間 3,348 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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]
    c[0] = 0
    print('YNeos'[c0+max(c.values())<k::2])
    
if __name__ == "__main__":
    main()
0