結果

問題 No.2777 Wild Flush
ユーザー miho-4miho-4
提出日時 2024-06-07 22:50:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 97,860 KB
最終ジャッジ日時 2024-06-07 22:50:29
合計ジャッジ時間 2,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,476 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 36 ms
52,180 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,724 KB
testcase_06 AC 36 ms
52,768 KB
testcase_07 AC 35 ms
52,196 KB
testcase_08 WA -
testcase_09 AC 57 ms
79,776 KB
testcase_10 AC 58 ms
80,516 KB
testcase_11 WA -
testcase_12 AC 75 ms
97,860 KB
testcase_13 AC 75 ms
92,940 KB
testcase_14 AC 76 ms
93,772 KB
testcase_15 AC 90 ms
92,488 KB
testcase_16 AC 44 ms
64,236 KB
testcase_17 AC 74 ms
92,876 KB
testcase_18 AC 62 ms
81,388 KB
testcase_19 AC 63 ms
82,464 KB
testcase_20 AC 49 ms
69,032 KB
testcase_21 AC 46 ms
66,588 KB
testcase_22 AC 60 ms
79,436 KB
testcase_23 AC 61 ms
79,636 KB
testcase_24 AC 65 ms
83,052 KB
testcase_25 AC 75 ms
93,420 KB
testcase_26 AC 71 ms
89,484 KB
testcase_27 AC 56 ms
75,044 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