結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,376 KB
testcase_01 AC 44 ms
52,992 KB
testcase_02 AC 42 ms
53,376 KB
testcase_03 AC 43 ms
52,992 KB
testcase_04 WA -
testcase_05 AC 42 ms
53,120 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 WA -
testcase_08 AC 43 ms
53,376 KB
testcase_09 AC 65 ms
80,256 KB
testcase_10 AC 67 ms
80,384 KB
testcase_11 AC 67 ms
80,384 KB
testcase_12 WA -
testcase_13 AC 89 ms
94,336 KB
testcase_14 AC 90 ms
94,464 KB
testcase_15 AC 90 ms
94,848 KB
testcase_16 AC 57 ms
65,024 KB
testcase_17 AC 89 ms
94,572 KB
testcase_18 AC 75 ms
83,200 KB
testcase_19 AC 75 ms
83,200 KB
testcase_20 AC 58 ms
70,144 KB
testcase_21 AC 59 ms
66,432 KB
testcase_22 AC 73 ms
81,152 KB
testcase_23 AC 73 ms
81,152 KB
testcase_24 AC 78 ms
84,864 KB
testcase_25 AC 91 ms
94,208 KB
testcase_26 AC 87 ms
91,008 KB
testcase_27 AC 68 ms
77,312 KB
testcase_28 AC 57 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

d=defaultdict(int)

for a in A:d[a]+=1
# print(d)
for _,v in d.items():
    if v==K or v+1==K:
        print("Yes")
        exit(0)
print("No")
0