結果

問題 No.1692 Expectations
ユーザー sigmanisigmani
提出日時 2022-03-02 20:13:04
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 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 2 ms
5,376 KB
testcase_10 AC 57 ms
5,376 KB
testcase_11 AC 56 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 186 ms
9,216 KB
testcase_16 AC 16 ms
5,376 KB
testcase_17 AC 81 ms
7,168 KB
testcase_18 AC 30 ms
5,376 KB
testcase_19 AC 231 ms
10,240 KB
testcase_20 AC 144 ms
12,288 KB
testcase_21 AC 169 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

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