結果

問題 No.182 新規性の虜
ユーザー yuma220284
提出日時 2019-04-03 11:28:30
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 253 bytes
コンパイル時間 1,462 ms
コンパイル使用メモリ 164,980 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-12-17 19:10:09
合計ジャッジ時間 3,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int main() {
	int N, A, count = 0;
	map<int, int> mp;
	cin >> N;
	for (int i = 0; i < N; i++) {
		cin >> A;
		if (mp[A] == 0) count++;
		else if (mp[A] == 1) count--;
		mp[A]++;
	}
	cout << count << endl;
}
0