結果

問題 No.2777 Wild Flush
ユーザー miho-4miho-4
提出日時 2024-06-07 23:20:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,328 KB
最終ジャッジ日時 2024-06-07 23:20:56
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,604 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 39 ms
53,440 KB
testcase_04 WA -
testcase_05 AC 39 ms
54,480 KB
testcase_06 AC 40 ms
53,852 KB
testcase_07 AC 44 ms
54,256 KB
testcase_08 WA -
testcase_09 AC 62 ms
80,848 KB
testcase_10 AC 61 ms
80,896 KB
testcase_11 WA -
testcase_12 AC 83 ms
99,328 KB
testcase_13 AC 85 ms
94,908 KB
testcase_14 AC 84 ms
94,720 KB
testcase_15 AC 86 ms
94,872 KB
testcase_16 AC 49 ms
65,408 KB
testcase_17 AC 80 ms
94,080 KB
testcase_18 AC 70 ms
83,904 KB
testcase_19 AC 70 ms
83,840 KB
testcase_20 AC 55 ms
70,772 KB
testcase_21 AC 50 ms
67,880 KB
testcase_22 AC 68 ms
81,816 KB
testcase_23 AC 68 ms
80,896 KB
testcase_24 AC 71 ms
84,888 KB
testcase_25 AC 86 ms
94,720 KB
testcase_26 AC 79 ms
91,380 KB
testcase_27 AC 64 ms
76,928 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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 k,v in d.items():
	if k!=0:
		Max=max(Max,v)
		
if k<=Max+d[0]:
	print("Yes")
else:
	print("No")
0