結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
Iruyan_Zak
|
| 提出日時 | 2016-01-18 01:34:44 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 54 ms / 5,000 ms |
| コード長 | 265 bytes |
| 記録 | |
| コンパイル時間 | 1,046 ms |
| コンパイル使用メモリ | 182,052 KB |
| 実行使用メモリ | 8,320 KB |
| 最終ジャッジ日時 | 2026-06-01 18:45:46 |
| 合計ジャッジ時間 | 3,019 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int input;
map<int, int> mp;
cin >> input;
while(cin >> input) ++mp[input];
cout << count_if(mp.begin(), mp.end(), [](decltype(mp)::const_reference p){return p.second == 1;}) << endl;
}
Iruyan_Zak