結果

問題 No.2777 Wild Flush
ユーザー 寝癖寝癖
提出日時 2024-06-07 21:44:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 109,184 KB
最終ジャッジ日時 2024-06-07 21:44:13
合計ジャッジ時間 3,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 38 ms
52,864 KB
testcase_03 AC 38 ms
53,120 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 38 ms
52,864 KB
testcase_06 AC 40 ms
53,376 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 39 ms
52,992 KB
testcase_09 AC 73 ms
79,872 KB
testcase_10 AC 65 ms
80,512 KB
testcase_11 AC 68 ms
80,000 KB
testcase_12 AC 110 ms
109,184 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 56 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

cnt = Counter(A)

a = None
for k, c in cnt.most_common():
    if k == 0:
        continue
    else:
        a = k
        break

if not a or a + cnt[0] >= K:
    print('Yes')
else:
    print('No')
0