結果

問題 No.1692 Expectations
ユーザー planesplanes
提出日時 2021-10-01 21:29:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 174,864 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-07-19 10:33:14
合計ジャッジ時間 3,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

int main() {
    ll N,M;cin>>N>>M;
    vector<ll> A(N);  
    map<ll,ll> S;
    for(ll i=0;i<N;i++) {
        cin>>A[i];
        S[A[i]]++;
    }
    cout<<S.size()<<" ";
    if(S.size()==1&&M-1<N) {

        cout<<1<<endl;
    }
    else {
        cout<<0<<endl;
    }
}


  
0