結果
問題 | No.2777 Wild Flush |
ユーザー |
|
提出日時 | 2024-06-07 21:45:36 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 342 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 99,840 KB |
最終ジャッジ日時 | 2024-12-26 07:35:49 |
合計ジャッジ時間 | 3,613 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 24 |
ソースコード
from collections import defaultdictN,K=map(int,input().split())A=list(map(int,input().split()))count=defaultdict(lambda: 0)for i in range(len(A)):count[A[i]]+=1_0count=count[0]for key in count:if key==0:if count[0]>=K:print("Yes")exit()elif count[key]+_0count>=K:print("Yes")exit()print("No")