結果

問題 No.2777 Wild Flush
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 20:47:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 99,636 KB
最終ジャッジ日時 2024-06-09 20:47:54
合計ジャッジ時間 3,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,536 KB
testcase_01 AC 38 ms
53,700 KB
testcase_02 AC 37 ms
53,472 KB
testcase_03 AC 45 ms
53,804 KB
testcase_04 AC 41 ms
55,080 KB
testcase_05 AC 41 ms
55,252 KB
testcase_06 AC 41 ms
53,868 KB
testcase_07 AC 40 ms
54,160 KB
testcase_08 AC 40 ms
54,200 KB
testcase_09 AC 63 ms
80,444 KB
testcase_10 AC 63 ms
82,072 KB
testcase_11 AC 62 ms
80,508 KB
testcase_12 AC 80 ms
99,636 KB
testcase_13 AC 82 ms
94,952 KB
testcase_14 AC 80 ms
94,644 KB
testcase_15 AC 82 ms
93,768 KB
testcase_16 AC 49 ms
65,952 KB
testcase_17 AC 82 ms
93,364 KB
testcase_18 AC 69 ms
85,128 KB
testcase_19 AC 68 ms
82,456 KB
testcase_20 AC 57 ms
69,320 KB
testcase_21 AC 50 ms
66,812 KB
testcase_22 AC 68 ms
81,328 KB
testcase_23 AC 66 ms
81,280 KB
testcase_24 AC 70 ms
85,468 KB
testcase_25 AC 80 ms
93,920 KB
testcase_26 AC 77 ms
92,428 KB
testcase_27 AC 60 ms
76,544 KB
testcase_28 AC 50 ms
66,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n, k = map(int, input().split())
A = list(map(int, input().split()))
c = Counter(A)
zero = c[0]
res = zero
c[0] = 0
res = max(res, zero + max(c.values()))
if res >= k:
    print('Yes')
else:
    print('No')
0