結果

問題 No.2777 Wild Flush
ユーザー ttkkggwwttkkggww
提出日時 2024-06-07 21:48:32
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 4,563 ms
コンパイル使用メモリ 269,896 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-12-26 07:42:46
合計ジャッジ時間 6,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
int N,K;
vector<ll> A;

void solve(){
    map<ll,ll> mp;
    for(int i = 0;i<N;i++){
        mp[A[i]]++;
    }
    ll zero = mp[0];
    for(auto [key,value]:mp){
        if(key==0){
            continue;
        }
        if(value+zero>=K){
            cout<<"Yes"<<endl;
            return;
        }
    }
    if(zero>=K){
        cout<<"Yes"<<endl;
        return;
    }
    cout<<"No"<<endl;
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> N >> K;
    A = vector<ll>(N);
    for(int i = 0;i<N;i++){
        cin >> A[i];
    }
    solve();
}
0