結果

問題 No.2777 Wild Flush
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-06-07 21:51:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-06-07 21:51:18
合計ジャッジ時間 2,818 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,248 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 AC 39 ms
53,248 KB
testcase_04 AC 37 ms
53,120 KB
testcase_05 AC 37 ms
52,992 KB
testcase_06 AC 37 ms
53,376 KB
testcase_07 AC 38 ms
53,632 KB
testcase_08 AC 38 ms
53,120 KB
testcase_09 AC 62 ms
83,968 KB
testcase_10 AC 63 ms
83,968 KB
testcase_11 AC 62 ms
84,224 KB
testcase_12 AC 83 ms
102,016 KB
testcase_13 AC 81 ms
97,280 KB
testcase_14 AC 81 ms
97,024 KB
testcase_15 AC 82 ms
97,280 KB
testcase_16 AC 47 ms
64,768 KB
testcase_17 AC 80 ms
96,512 KB
testcase_18 AC 66 ms
84,992 KB
testcase_19 AC 73 ms
84,736 KB
testcase_20 AC 51 ms
70,016 KB
testcase_21 AC 48 ms
66,048 KB
testcase_22 AC 63 ms
82,432 KB
testcase_23 AC 65 ms
82,560 KB
testcase_24 AC 70 ms
86,400 KB
testcase_25 AC 82 ms
97,536 KB
testcase_26 AC 77 ms
93,568 KB
testcase_27 AC 63 ms
77,568 KB
testcase_28 AC 47 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N, K = map(int, input().split())
*A, = map(int, input().split())

counter = Counter(A)
zeros = counter.get(0, 0)
counter[0] = 0
print("Yes" if K <= max(counter.values()) + zeros else "No")
0