結果

問題 No.1692 Expectations
ユーザー sigmanisigmani
提出日時 2022-03-02 20:10:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 1,720 ms
コンパイル使用メモリ 174,352 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-07-16 11:00:51
合計ジャッジ時間 3,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 50 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 13 ms
6,944 KB
testcase_15 AC 149 ms
9,344 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 71 ms
7,040 KB
testcase_18 AC 27 ms
6,944 KB
testcase_19 AC 184 ms
10,240 KB
testcase_20 AC 128 ms
12,032 KB
testcase_21 AC 153 ms
13,568 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<<" "<<0;
  
  
}
0