結果

問題 No.2777 Wild Flush
ユーザー tipstar0125tipstar0125
提出日時 2024-06-07 21:55:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 107,736 KB
最終ジャッジ日時 2024-06-07 21:55:48
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,372 KB
testcase_01 AC 38 ms
53,616 KB
testcase_02 AC 40 ms
54,604 KB
testcase_03 AC 40 ms
53,780 KB
testcase_04 AC 40 ms
54,892 KB
testcase_05 AC 39 ms
53,956 KB
testcase_06 AC 39 ms
54,968 KB
testcase_07 WA -
testcase_08 AC 41 ms
53,852 KB
testcase_09 AC 61 ms
80,928 KB
testcase_10 AC 59 ms
81,148 KB
testcase_11 AC 83 ms
82,056 KB
testcase_12 WA -
testcase_13 AC 102 ms
101,404 KB
testcase_14 AC 104 ms
101,244 KB
testcase_15 AC 104 ms
100,944 KB
testcase_16 AC 51 ms
66,128 KB
testcase_17 AC 99 ms
100,920 KB
testcase_18 AC 82 ms
88,708 KB
testcase_19 AC 81 ms
89,220 KB
testcase_20 AC 60 ms
74,356 KB
testcase_21 AC 53 ms
69,204 KB
testcase_22 AC 79 ms
85,760 KB
testcase_23 AC 78 ms
85,672 KB
testcase_24 AC 92 ms
90,644 KB
testcase_25 AC 102 ms
101,004 KB
testcase_26 AC 93 ms
96,908 KB
testcase_27 AC 72 ms
81,176 KB
testcase_28 AC 53 ms
68,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,K=list(map(int,input().split()))
A=list(map(int,input().split()))

d=defaultdict(int)
A.sort()

for a in A:d[a]+=1
v=[]
for _,x in d.items():v.append(x)
v.sort()
v.reverse()

n=v[0]
if len(v)>1:n+=v[1]
if n>=K:print("Yes")
else:print("No")
0