結果

問題 No.2777 Wild Flush
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 20:43:29
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 180 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-06-09 20:43:35
合計ジャッジ時間 3,214 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,120 KB
testcase_01 AC 49 ms
53,852 KB
testcase_02 AC 35 ms
53,888 KB
testcase_03 RE -
testcase_04 AC 35 ms
53,376 KB
testcase_05 AC 34 ms
53,376 KB
testcase_06 RE -
testcase_07 AC 34 ms
53,632 KB
testcase_08 AC 35 ms
53,504 KB
testcase_09 RE -
testcase_10 AC 54 ms
80,384 KB
testcase_11 AC 55 ms
80,256 KB
testcase_12 AC 70 ms
98,688 KB
testcase_13 AC 74 ms
93,440 KB
testcase_14 AC 71 ms
93,952 KB
testcase_15 AC 70 ms
93,696 KB
testcase_16 AC 41 ms
63,872 KB
testcase_17 AC 72 ms
93,184 KB
testcase_18 AC 61 ms
82,776 KB
testcase_19 AC 60 ms
82,560 KB
testcase_20 AC 61 ms
69,504 KB
testcase_21 AC 43 ms
65,920 KB
testcase_22 AC 56 ms
80,384 KB
testcase_23 AC 57 ms
80,512 KB
testcase_24 AC 64 ms
84,224 KB
testcase_25 AC 73 ms
93,312 KB
testcase_26 AC 70 ms
89,856 KB
testcase_27 AC 54 ms
75,904 KB
testcase_28 AC 43 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n, k = map(int, input().split())
A = list(map(int, input().split()))
c = Counter(A)
any = c[0]
del c[0]
print('YNeos'[max(c.values()) + any < k::2])
0