結果

問題 No.2777 Wild Flush
ユーザー tipstar0125tipstar0125
提出日時 2024-06-07 22:07:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-06-07 22:07:47
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,992 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 39 ms
53,760 KB
testcase_04 AC 43 ms
53,248 KB
testcase_05 AC 38 ms
53,760 KB
testcase_06 AC 39 ms
52,992 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 38 ms
53,248 KB
testcase_09 AC 59 ms
80,256 KB
testcase_10 AC 58 ms
80,384 KB
testcase_11 AC 65 ms
80,128 KB
testcase_12 AC 90 ms
106,880 KB
testcase_13 AC 89 ms
99,840 KB
testcase_14 AC 93 ms
100,096 KB
testcase_15 AC 89 ms
99,584 KB
testcase_16 AC 50 ms
65,408 KB
testcase_17 AC 91 ms
99,584 KB
testcase_18 AC 89 ms
87,552 KB
testcase_19 AC 71 ms
86,912 KB
testcase_20 AC 58 ms
71,168 KB
testcase_21 AC 52 ms
67,968 KB
testcase_22 AC 69 ms
84,224 KB
testcase_23 AC 73 ms
84,864 KB
testcase_24 AC 73 ms
88,448 KB
testcase_25 AC 90 ms
100,096 KB
testcase_26 AC 85 ms
96,384 KB
testcase_27 AC 70 ms
80,512 KB
testcase_28 AC 51 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,K=list(map(int,input().split()))
A=list(map(int,input().split()))

d=defaultdict(int)

for a in A:d[a]+=1
v=[]
zero=0
for k,x in d.items():
    if k==0:zero=x
    else:v.append(x)
v.sort()
v.reverse()

if len(v)==0:
    if zero>=K:print("Yes")
    else:print("No")
else:
    if zero+v[0]>=K:print("Yes")
    else:print("No")
0