結果

問題 No.182 新規性の虜
ユーザー MayimgMayimg
提出日時 2018-12-24 12:25:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 1,667 ms
コンパイル使用メモリ 171,064 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-25 10:58:54
合計ジャッジ時間 3,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 22 ms
6,940 KB
testcase_09 AC 37 ms
7,296 KB
testcase_10 AC 31 ms
6,940 KB
testcase_11 AC 26 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,940 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
6,944 KB
testcase_24 AC 36 ms
8,192 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 5 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
evil01.txt AC 40 ms
8,192 KB
evil02.txt AC 39 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);  
	int n;
	cin >> n;
	set<int> a;
	for(int i = 0; i < n; i++) {
		int x;
		cin >> x;
		a.insert(x);
	}
	cout << max(0, n - (n - (int)a.size()) * 2) << endl;
	return 0;	
}
0