結果

問題 No.2777 Wild Flush
ユーザー pluto77pluto77
提出日時 2024-06-14 10:39:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 171 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 89,960 KB
最終ジャッジ日時 2024-06-14 10:40:04
合計ジャッジ時間 3,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,364 KB
testcase_01 RE -
testcase_02 AC 36 ms
52,436 KB
testcase_03 AC 35 ms
53,056 KB
testcase_04 AC 36 ms
52,344 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
52,192 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 56 ms
77,804 KB
testcase_10 AC 55 ms
78,680 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 42 ms
62,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
l=[0]*(n+1)
for x in a:
 l[x]+=1
for i in range(1,n+1):
 if l[0]+l[i]>=k:
  print('Yes')
  exit()
prit('No')
0