結果

問題 No.2777 Wild Flush
ユーザー shobonvipshobonvip
提出日時 2024-06-07 21:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 82,224 KB
最終ジャッジ日時 2024-06-07 21:27:04
合計ジャッジ時間 2,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,660 KB
testcase_01 AC 34 ms
52,616 KB
testcase_02 AC 38 ms
53,244 KB
testcase_03 AC 34 ms
51,748 KB
testcase_04 AC 35 ms
53,716 KB
testcase_05 AC 34 ms
52,916 KB
testcase_06 AC 38 ms
53,476 KB
testcase_07 AC 35 ms
52,032 KB
testcase_08 AC 34 ms
53,212 KB
testcase_09 AC 55 ms
79,220 KB
testcase_10 AC 53 ms
79,244 KB
testcase_11 AC 55 ms
78,296 KB
testcase_12 AC 58 ms
82,100 KB
testcase_13 AC 60 ms
81,288 KB
testcase_14 AC 63 ms
81,200 KB
testcase_15 AC 60 ms
81,792 KB
testcase_16 AC 41 ms
60,664 KB
testcase_17 AC 61 ms
81,232 KB
testcase_18 AC 54 ms
74,864 KB
testcase_19 AC 56 ms
75,100 KB
testcase_20 AC 45 ms
65,164 KB
testcase_21 AC 45 ms
64,056 KB
testcase_22 AC 54 ms
72,340 KB
testcase_23 AC 55 ms
74,468 KB
testcase_24 AC 56 ms
74,068 KB
testcase_25 AC 63 ms
82,224 KB
testcase_26 AC 61 ms
79,456 KB
testcase_27 AC 53 ms
71,768 KB
testcase_28 AC 45 ms
63,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int,input().split())
t = [0] * (n+1)
zero = 0
a = list(map(int,input().split()))
for i in range(n):
	if a[i] == 0:
		zero += 1
	else:
		t[a[i]] += 1

if max(t) + zero >= k:
	print("Yes")
else:
	print("No")	
0