結果

問題 No.2777 Wild Flush
ユーザー miho-4miho-4
提出日時 2024-06-07 22:45:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-06-07 22:45:12
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 37 ms
51,456 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 WA -
testcase_09 AC 57 ms
79,104 KB
testcase_10 AC 58 ms
78,336 KB
testcase_11 WA -
testcase_12 AC 98 ms
95,872 KB
testcase_13 AC 79 ms
91,392 KB
testcase_14 AC 77 ms
91,520 KB
testcase_15 AC 76 ms
91,520 KB
testcase_16 AC 47 ms
62,720 KB
testcase_17 AC 77 ms
90,880 KB
testcase_18 AC 65 ms
81,280 KB
testcase_19 AC 66 ms
81,408 KB
testcase_20 AC 53 ms
67,840 KB
testcase_21 AC 48 ms
64,256 KB
testcase_22 AC 63 ms
79,232 KB
testcase_23 AC 63 ms
78,592 KB
testcase_24 AC 67 ms
82,688 KB
testcase_25 AC 80 ms
91,776 KB
testcase_26 AC 76 ms
88,064 KB
testcase_27 AC 74 ms
75,008 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
L=list(map(int,input().split()))
d=dict()
for e in L:
	if e in d:
		d[e]+=1
	else:
		d[e]=1
M=0
for k,v in d.items():
	if k!=0:
		M=max(M,v)
d0=0
if 0 in d:
	d0=d[0]
print("Yes" if k<=d0+M else "No")
0