結果

問題 No.182 新規性の虜
ユーザー gotutiyangotutiyan
提出日時 2017-11-21 17:04:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 924 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 97,288 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 18:33:06
合計ジャッジ時間 4,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 123 ms
5,376 KB
testcase_09 AC 297 ms
5,376 KB
testcase_10 AC 226 ms
5,376 KB
testcase_11 AC 160 ms
5,376 KB
testcase_12 AC 36 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 399 ms
5,376 KB
testcase_25 AC 397 ms
5,376 KB
testcase_26 AC 9 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
evil01.txt AC 412 ms
5,376 KB
evil02.txt AC 414 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS

#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <fstream>
#include <set>
#include <utility>
#include <algorithm>
#include <queue>
#include <stack>
#include <deque>
#include <numeric>
#include <sstream>
#include <list>
#include <map>
#include <stdlib.h>
#include <time.h>

#define rep(i,p,n) for(int i=(int)p;i<(int)n;i++)
#define repp(i,p,n) for(int i=(int)p;i>=(int)n;i--)
#define Sort(x) sort(x.begin(),x.end());
#define ll long long
#define INF 2000000000

using namespace std;
int main() {
	int n;
	cin >> n;
	vector<int> v(n);
	rep(i, 0, n)cin >> v[i];
	Sort(v);

	int ans = 0;
	while (!v.empty()) {
		if (v[0] == v[1]) {
			v.erase(v.begin());
			v.erase(v.begin());
		}
		else {
			if (v.size() == 2) {
				ans += 2;
				v.erase(v.begin());
				break;
			}
			else {
				ans++;
				v.erase(v.begin());
			}
		}
	}
	cout << ans << endl;

	return 0;
}
0