結果

問題 No.2777 Wild Flush
ユーザー 👑 KA37RIKA37RI
提出日時 2024-06-07 21:42:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-06-07 21:42:15
合計ジャッジ時間 2,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 38 ms
53,760 KB
testcase_03 AC 38 ms
53,504 KB
testcase_04 AC 40 ms
53,376 KB
testcase_05 AC 38 ms
53,248 KB
testcase_06 AC 39 ms
53,120 KB
testcase_07 AC 38 ms
53,376 KB
testcase_08 AC 39 ms
53,376 KB
testcase_09 AC 58 ms
74,624 KB
testcase_10 AC 58 ms
75,008 KB
testcase_11 AC 60 ms
74,752 KB
testcase_12 AC 77 ms
92,928 KB
testcase_13 AC 79 ms
88,576 KB
testcase_14 AC 80 ms
88,448 KB
testcase_15 AC 81 ms
88,320 KB
testcase_16 AC 64 ms
64,768 KB
testcase_17 AC 77 ms
87,808 KB
testcase_18 AC 65 ms
79,104 KB
testcase_19 AC 65 ms
79,872 KB
testcase_20 AC 53 ms
68,736 KB
testcase_21 AC 48 ms
65,920 KB
testcase_22 AC 62 ms
77,696 KB
testcase_23 AC 64 ms
77,440 KB
testcase_24 AC 68 ms
81,280 KB
testcase_25 AC 78 ms
88,192 KB
testcase_26 AC 74 ms
86,272 KB
testcase_27 AC 61 ms
74,496 KB
testcase_28 AC 53 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n, k = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]

c = Counter(a)

ok = False

for i in range(1, n + 1):
	if c[0] + c[i] >= k:
		ok = True
		
print("Yes" if ok else "No")
0