結果

問題 No.182 新規性の虜
ユーザー stack9996stack9996
提出日時 2015-08-26 23:39:20
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 67,920 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 19:39:19
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 30 ms
5,248 KB
testcase_09 AC 46 ms
5,248 KB
testcase_10 AC 40 ms
5,248 KB
testcase_11 AC 34 ms
5,248 KB
testcase_12 AC 15 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 27 ms
5,248 KB
testcase_19 AC 20 ms
5,248 KB
testcase_20 AC 14 ms
5,248 KB
testcase_21 AC 36 ms
5,248 KB
testcase_22 AC 18 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 36 ms
5,248 KB
testcase_25 AC 21 ms
5,248 KB
testcase_26 AC 8 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
evil01.txt AC 48 ms
5,248 KB
evil02.txt AC 48 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <numeric>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <queue>

#define rep(i, a) FOR(i, 0, a)
#define FOR(i, a, b) for(int i = a; i < b; ++i)

int a[100001];

int main(){
	int n;
	std::cin >> n;
	rep(i, n)std::cin >> a[i];
	std::sort(a, a + n);
	int cnt = 0;
	if (n == 1)++cnt;
	if (n >= 2 && a[0] != a[1])++cnt;
	FOR(i, 1, n - 1){
		if (a[i] != a[i + 1] && a[i] != a[i - 1])++cnt;
	}
	if (n >= 2 && a[n - 2] != a[n - 1])++cnt;
	std::cout << cnt << std::endl;
	return 0;
}
0