結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,072 KB
testcase_01 AC 37 ms
52,788 KB
testcase_02 AC 36 ms
52,964 KB
testcase_03 AC 37 ms
52,332 KB
testcase_04 AC 37 ms
52,556 KB
testcase_05 AC 36 ms
52,320 KB
testcase_06 AC 36 ms
51,824 KB
testcase_07 AC 38 ms
52,880 KB
testcase_08 AC 36 ms
52,368 KB
testcase_09 AC 57 ms
79,240 KB
testcase_10 AC 58 ms
79,060 KB
testcase_11 AC 58 ms
78,984 KB
testcase_12 AC 60 ms
83,140 KB
testcase_13 AC 61 ms
82,528 KB
testcase_14 AC 61 ms
82,128 KB
testcase_15 AC 60 ms
83,068 KB
testcase_16 AC 42 ms
60,840 KB
testcase_17 AC 61 ms
80,764 KB
testcase_18 AC 57 ms
74,196 KB
testcase_19 AC 53 ms
75,636 KB
testcase_20 AC 46 ms
64,984 KB
testcase_21 AC 43 ms
62,996 KB
testcase_22 AC 52 ms
73,256 KB
testcase_23 AC 52 ms
73,840 KB
testcase_24 AC 55 ms
75,332 KB
testcase_25 AC 59 ms
81,844 KB
testcase_26 AC 58 ms
80,112 KB
testcase_27 AC 48 ms
70,340 KB
testcase_28 AC 41 ms
62,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
c=[0]*(n+1)
for v in a:
	c[v]+=1
print(["No","Yes"][max(c[1:])+c[0]>=k])
0