結果

問題 No.2777 Wild Flush
ユーザー twooimp2twooimp2
提出日時 2024-06-08 13:21:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 2,980 ms
コンパイル使用メモリ 253,076 KB
実行使用メモリ 9,728 KB
最終ジャッジ日時 2024-06-08 13:21:44
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 16 ms
5,376 KB
testcase_11 AC 16 ms
5,376 KB
testcase_12 AC 72 ms
9,728 KB
testcase_13 AC 78 ms
7,424 KB
testcase_14 AC 79 ms
7,424 KB
testcase_15 AC 81 ms
7,424 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 77 ms
7,168 KB
testcase_18 AC 50 ms
6,016 KB
testcase_19 AC 47 ms
6,144 KB
testcase_20 AC 16 ms
5,376 KB
testcase_21 AC 10 ms
5,376 KB
testcase_22 AC 42 ms
6,016 KB
testcase_23 AC 40 ms
5,760 KB
testcase_24 AC 49 ms
6,272 KB
testcase_25 AC 74 ms
7,424 KB
testcase_26 AC 68 ms
6,912 KB
testcase_27 AC 30 ms
5,376 KB
testcase_28 AC 10 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;

int main(){
  ll n,k;
  cin>>n>>k;
  map<ll,ll> mp;
  for(ll i=0;i<n;i++){
    ll a;
    cin>>a;
    mp[a]++;
  }
  bool ok=false;
  for(auto [ke,v]:mp){
    if(ke==0){
      continue;
    }
    if(mp[0]+mp[ke]>=k){
      ok=true;
    }
  }
  if(mp[0]>=k){
    ok=true;
  }
  if(ok){
    cout<<"Yes"<<endl;
  }else{
    cout<<"No"<<endl;
  }
}
0