結果

問題 No.2777 Wild Flush
ユーザー noriocnorioc
提出日時 2024-06-07 22:40:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,584 KB
最終ジャッジ日時 2024-06-07 22:40:59
合計ジャッジ時間 3,233 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 41 ms
53,252 KB
testcase_03 AC 42 ms
53,120 KB
testcase_04 AC 42 ms
53,248 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 40 ms
53,376 KB
testcase_07 AC 41 ms
53,632 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 69 ms
80,256 KB
testcase_10 AC 62 ms
79,872 KB
testcase_11 AC 65 ms
80,000 KB
testcase_12 AC 84 ms
99,584 KB
testcase_13 AC 88 ms
94,208 KB
testcase_14 AC 86 ms
94,464 KB
testcase_15 AC 83 ms
94,464 KB
testcase_16 AC 52 ms
65,152 KB
testcase_17 AC 84 ms
93,696 KB
testcase_18 AC 71 ms
83,072 KB
testcase_19 AC 70 ms
83,456 KB
testcase_20 AC 57 ms
70,016 KB
testcase_21 AC 52 ms
66,432 KB
testcase_22 AC 69 ms
81,536 KB
testcase_23 AC 68 ms
80,640 KB
testcase_24 AC 76 ms
84,608 KB
testcase_25 AC 84 ms
93,952 KB
testcase_26 AC 80 ms
90,752 KB
testcase_27 AC 64 ms
76,544 KB
testcase_28 AC 52 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

freq = Counter(A)
for k, v in freq.items():
    if v >= K or (k > 0 and v + freq[0] >= K):
        print('Yes')
        break
else:
    print('No')
0