結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-16 13:48:06 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 53 ms / 5,000 ms |
| コード長 | 336 bytes |
| 記録 | |
| コンパイル時間 | 2,015 ms |
| コンパイル使用メモリ | 165,080 KB |
| 実行使用メモリ | 7,816 KB |
| 最終ジャッジ日時 | 2024-12-26 19:22:42 |
| 合計ジャッジ時間 | 3,746 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int n; cin >> n;
unordered_map<int, int> A;
for (int i = 0; i < n; ++i) {
int a; cin >> a;
A[a]++;
}
int ans = 0;
for (unordered_map<int, int>::iterator it = A.begin(); it != A.end(); ++it) {
if (it -> second == 1) ans++;
}
cout << ans << endl;
}