結果

問題 No.2777 Wild Flush
ユーザー moon17moon17
提出日時 2024-06-07 23:07:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-06-07 23:07:30
合計ジャッジ時間 3,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 38 ms
53,120 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 38 ms
53,120 KB
testcase_04 AC 40 ms
53,504 KB
testcase_05 AC 43 ms
53,376 KB
testcase_06 AC 39 ms
53,632 KB
testcase_07 AC 40 ms
53,504 KB
testcase_08 AC 39 ms
53,120 KB
testcase_09 AC 71 ms
83,584 KB
testcase_10 AC 71 ms
83,200 KB
testcase_11 AC 72 ms
83,456 KB
testcase_12 AC 93 ms
102,016 KB
testcase_13 AC 93 ms
97,152 KB
testcase_14 AC 92 ms
96,640 KB
testcase_15 AC 96 ms
96,896 KB
testcase_16 AC 54 ms
65,152 KB
testcase_17 AC 90 ms
96,256 KB
testcase_18 AC 78 ms
84,864 KB
testcase_19 AC 76 ms
85,120 KB
testcase_20 AC 60 ms
70,400 KB
testcase_21 AC 53 ms
66,560 KB
testcase_22 AC 73 ms
82,688 KB
testcase_23 AC 73 ms
82,432 KB
testcase_24 AC 78 ms
87,040 KB
testcase_25 AC 92 ms
96,768 KB
testcase_26 AC 94 ms
92,800 KB
testcase_27 AC 70 ms
78,208 KB
testcase_28 AC 57 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import*
n,k,*a=map(int,open(0).read().split())
c=Counter(a)
for ky,v in c.items():
  if ky and v+c[0]>=k:
    exit(print('Yes'))
  if v>=k:
    exit(print('Yes'))
print('No')
0