結果

問題 No.2777 Wild Flush
ユーザー miho-4miho-4
提出日時 2024-06-07 23:24:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,768 KB
最終ジャッジ日時 2024-06-07 23:24:15
合計ジャッジ時間 2,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 39 ms
53,120 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 38 ms
53,632 KB
testcase_04 AC 39 ms
53,504 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 43 ms
53,632 KB
testcase_07 AC 37 ms
53,248 KB
testcase_08 AC 38 ms
53,120 KB
testcase_09 AC 68 ms
80,512 KB
testcase_10 AC 64 ms
80,512 KB
testcase_11 AC 66 ms
80,384 KB
testcase_12 AC 89 ms
99,768 KB
testcase_13 AC 90 ms
94,720 KB
testcase_14 AC 89 ms
94,848 KB
testcase_15 AC 94 ms
94,592 KB
testcase_16 AC 55 ms
65,712 KB
testcase_17 AC 87 ms
94,464 KB
testcase_18 AC 80 ms
83,872 KB
testcase_19 AC 78 ms
83,712 KB
testcase_20 AC 58 ms
70,400 KB
testcase_21 AC 53 ms
66,816 KB
testcase_22 AC 72 ms
81,536 KB
testcase_23 AC 72 ms
81,664 KB
testcase_24 AC 76 ms
85,376 KB
testcase_25 AC 88 ms
94,720 KB
testcase_26 AC 89 ms
91,136 KB
testcase_27 AC 71 ms
77,440 KB
testcase_28 AC 54 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
L=list(map(int,input().split()))
from collections import defaultdict
d=defaultdict(int)
for e in L:
	d[e]+=1
Max=0
for key,v in d.items():
	if key!=0:
		Max=max(Max,v)
		
if k<=Max+d[0]:
	print("Yes")
else:
	print("No")
0