結果

問題 No.1692 Expectations
ユーザー sigmanisigmani
提出日時 2022-03-02 20:13:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 174,476 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-07-16 11:02:20
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N,M;
  cin>>N>>M;
  int A[202020];
  for(int i=1;i<=N;i++)cin>>A[i];
  map<int, int> Map;
  for(int i=1;i<=N;i++){
    Map[A[i]]++;
  }
  int count=0;
  for(int i=1;i<=N;i++){
    if(Map[A[i]]>0){
      count++;
      Map[A[i]]=0;
    }
  }
  cout<<count<<" ";
  if(N==M){
    int U=0;
    for(int i=1;i<=N;i++)if(A[1]==A[i])U++;
    if(U==N)cout<<1;
    else cout<<0;
  }
  else cout<<0;
  
  
}
0