結果

問題 No.2777 Wild Flush
ユーザー miho-4miho-4
提出日時 2024-06-07 22:53:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,712 KB
最終ジャッジ日時 2024-06-07 22:54:01
合計ジャッジ時間 3,003 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 38 ms
53,120 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 WA -
testcase_09 AC 64 ms
80,512 KB
testcase_10 AC 66 ms
80,384 KB
testcase_11 WA -
testcase_12 AC 90 ms
99,712 KB
testcase_13 AC 89 ms
94,592 KB
testcase_14 AC 89 ms
94,848 KB
testcase_15 AC 88 ms
94,720 KB
testcase_16 AC 53 ms
65,152 KB
testcase_17 AC 103 ms
94,208 KB
testcase_18 AC 77 ms
83,584 KB
testcase_19 AC 76 ms
83,584 KB
testcase_20 AC 65 ms
70,144 KB
testcase_21 AC 60 ms
66,944 KB
testcase_22 AC 73 ms
81,408 KB
testcase_23 AC 73 ms
81,280 KB
testcase_24 AC 77 ms
85,632 KB
testcase_25 AC 89 ms
94,848 KB
testcase_26 AC 85 ms
91,136 KB
testcase_27 AC 67 ms
77,312 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,k=map(int,input().split())
L=list(map(int,input().split()))
d=defaultdict(int)
for e in L:
	d[e]+=1
M=0
for k,v in d.items():
	if k!=0:
		M=max(M,v)

print("Yes" if k<=(d[0]+M) else "No")
0