結果

問題 No.182 新規性の虜
ユーザー weakenweaken
提出日時 2020-10-14 03:57:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 2,273 ms
コンパイル使用メモリ 208,144 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-07-20 18:57:21
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 32 ms
5,888 KB
testcase_09 AC 55 ms
7,424 KB
testcase_10 AC 46 ms
6,912 KB
testcase_11 AC 36 ms
6,272 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 25 ms
5,376 KB
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 12 ms
5,376 KB
testcase_21 AC 27 ms
5,376 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 48 ms
8,064 KB
testcase_25 AC 8 ms
5,376 KB
testcase_26 AC 7 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
evil01.txt AC 50 ms
8,192 KB
evil02.txt AC 51 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define fastIO (cin.tie(0), cout.tie(0), ios::sync_with_stdio(false))
using namespace std;

int main() {
  fastIO;
  int n;
  cin >> n;
  map<int, int> mp;

  for (int i = 0; i < n; ++i) {
    int num;
    cin >> num;
    if (mp.find(num) != mp.end()) {
      mp[num]++;
    } else {
      mp[num] = 1;
    }
  }

  int cnt = 0;
  for (const auto key : mp) {
    if (key.second == 1)
      cnt++;
  }

  cout << cnt << '\n';
  return 0;
}
0