結果

問題 No.2777 Wild Flush
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-09 20:45:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 217 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 99,272 KB
最終ジャッジ日時 2024-06-09 20:46:02
合計ジャッジ時間 2,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,508 KB
testcase_01 AC 35 ms
54,144 KB
testcase_02 AC 34 ms
54,872 KB
testcase_03 RE -
testcase_04 AC 36 ms
54,912 KB
testcase_05 AC 36 ms
54,348 KB
testcase_06 RE -
testcase_07 AC 37 ms
54,284 KB
testcase_08 AC 34 ms
54,324 KB
testcase_09 RE -
testcase_10 AC 58 ms
81,296 KB
testcase_11 AC 55 ms
81,460 KB
testcase_12 AC 74 ms
99,272 KB
testcase_13 AC 78 ms
94,328 KB
testcase_14 AC 70 ms
94,528 KB
testcase_15 AC 71 ms
94,840 KB
testcase_16 AC 44 ms
65,524 KB
testcase_17 AC 71 ms
93,860 KB
testcase_18 AC 61 ms
83,724 KB
testcase_19 AC 60 ms
83,372 KB
testcase_20 AC 47 ms
70,420 KB
testcase_21 AC 43 ms
65,896 KB
testcase_22 AC 57 ms
81,984 KB
testcase_23 AC 56 ms
80,692 KB
testcase_24 AC 60 ms
85,588 KB
testcase_25 AC 77 ms
94,156 KB
testcase_26 AC 68 ms
91,008 KB
testcase_27 AC 54 ms
76,836 KB
testcase_28 AC 45 ms
67,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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