結果

問題 No.2777 Wild Flush
ユーザー hato336hato336
提出日時 2024-06-07 21:32:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,960 KB
最終ジャッジ日時 2024-06-07 21:32:45
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
85,504 KB
testcase_01 AC 122 ms
85,760 KB
testcase_02 AC 122 ms
85,504 KB
testcase_03 AC 123 ms
85,632 KB
testcase_04 AC 117 ms
85,632 KB
testcase_05 AC 113 ms
85,632 KB
testcase_06 AC 114 ms
85,504 KB
testcase_07 AC 116 ms
85,504 KB
testcase_08 AC 119 ms
85,760 KB
testcase_09 AC 149 ms
103,424 KB
testcase_10 AC 148 ms
103,552 KB
testcase_11 AC 153 ms
103,296 KB
testcase_12 AC 166 ms
104,960 KB
testcase_13 AC 155 ms
104,952 KB
testcase_14 AC 152 ms
104,896 KB
testcase_15 AC 156 ms
104,960 KB
testcase_16 AC 134 ms
89,848 KB
testcase_17 AC 149 ms
104,832 KB
testcase_18 AC 145 ms
99,200 KB
testcase_19 AC 147 ms
98,816 KB
testcase_20 AC 135 ms
91,520 KB
testcase_21 AC 130 ms
90,112 KB
testcase_22 AC 145 ms
97,664 KB
testcase_23 AC 141 ms
97,664 KB
testcase_24 AC 141 ms
99,084 KB
testcase_25 AC 149 ms
104,704 KB
testcase_26 AC 148 ms
102,848 KB
testcase_27 AC 142 ms
95,232 KB
testcase_28 AC 131 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline

#
#alist = []

n,k = map(int,input().split())
a = list(map(int,input().split()))
c = [0 for i in range(n+1)]
for i in a:
    c[i] += 1
ans = max(c[1:])
print('Yes' if ans + c[0] >= k else 'No')
0