結果

問題 No.2777 Wild Flush
ユーザー pluto77pluto77
提出日時 2024-06-14 10:41:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 82,400 KB
最終ジャッジ日時 2024-06-14 10:41:06
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,288 KB
testcase_01 AC 38 ms
52,688 KB
testcase_02 AC 38 ms
52,516 KB
testcase_03 AC 40 ms
52,568 KB
testcase_04 AC 38 ms
52,612 KB
testcase_05 AC 39 ms
52,136 KB
testcase_06 AC 38 ms
52,688 KB
testcase_07 AC 37 ms
53,348 KB
testcase_08 AC 38 ms
52,260 KB
testcase_09 AC 58 ms
78,392 KB
testcase_10 AC 58 ms
78,024 KB
testcase_11 AC 59 ms
78,740 KB
testcase_12 AC 62 ms
81,460 KB
testcase_13 AC 65 ms
80,988 KB
testcase_14 AC 64 ms
81,368 KB
testcase_15 AC 64 ms
82,400 KB
testcase_16 AC 44 ms
62,364 KB
testcase_17 AC 62 ms
82,380 KB
testcase_18 AC 57 ms
74,224 KB
testcase_19 AC 56 ms
74,572 KB
testcase_20 AC 49 ms
64,980 KB
testcase_21 AC 46 ms
63,308 KB
testcase_22 AC 55 ms
72,712 KB
testcase_23 AC 56 ms
73,308 KB
testcase_24 AC 57 ms
75,892 KB
testcase_25 AC 63 ms
81,592 KB
testcase_26 AC 62 ms
78,904 KB
testcase_27 AC 52 ms
69,816 KB
testcase_28 AC 45 ms
63,192 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()
print('No')
0