結果

問題 No.2777 Wild Flush
ユーザー tipstar0125tipstar0125
提出日時 2024-06-07 21:58:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-06-07 21:58:15
合計ジャッジ時間 3,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,248 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 39 ms
53,632 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,376 KB
testcase_09 AC 65 ms
80,256 KB
testcase_10 AC 65 ms
80,640 KB
testcase_11 AC 65 ms
80,512 KB
testcase_12 WA -
testcase_13 AC 109 ms
100,352 KB
testcase_14 AC 112 ms
101,308 KB
testcase_15 AC 108 ms
100,608 KB
testcase_16 AC 53 ms
65,536 KB
testcase_17 AC 107 ms
99,968 KB
testcase_18 AC 91 ms
88,192 KB
testcase_19 AC 86 ms
87,808 KB
testcase_20 AC 63 ms
72,064 KB
testcase_21 AC 57 ms
68,096 KB
testcase_22 AC 82 ms
85,376 KB
testcase_23 AC 82 ms
85,376 KB
testcase_24 AC 92 ms
90,112 KB
testcase_25 AC 109 ms
100,992 KB
testcase_26 AC 102 ms
96,512 KB
testcase_27 AC 79 ms
80,768 KB
testcase_28 AC 57 ms
67,840 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")
else:
    if n+1>=K:print("Yes")
    else:print("No")
    
0