結果
| 問題 | No.2777 Wild Flush |
| コンテスト | |
| ユーザー |
👑 amentorimaru
|
| 提出日時 | 2024-05-26 15:08:20 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 88 ms / 2,000 ms |
| コード長 | 363 bytes |
| 記録 | |
| コンパイル時間 | 190 ms |
| コンパイル使用メモリ | 81,840 KB |
| 実行使用メモリ | 101,792 KB |
| 最終ジャッジ日時 | 2024-12-24 17:47:08 |
| 合計ジャッジ時間 | 3,177 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 24 |
ソースコード
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()
amentorimaru