結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-17 14:38:52 |
| 言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 68 ms / 5,000 ms |
| コード長 | 320 bytes |
| コンパイル時間 | 1,411 ms |
| コンパイル使用メモリ | 125,440 KB |
| 実行使用メモリ | 8,192 KB |
| 最終ジャッジ日時 | 2024-11-16 23:11:04 |
| 合計ジャッジ時間 | 3,599 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
#include <iostream>
#include <map>
using namespace std;
int main() {
int N;
cin >> N;
map<int, int> map;
for (int i = 0; i < N; i++) {
int A;
cin >> A;
map[A]++;
}
int ans = 0;
for (auto p: map) {
if (p.second == 1) ans++;
}
cout << ans << endl;
}