結果

問題 No.182 新規性の虜
ユーザー d_seid_sei
提出日時 2019-08-27 14:21:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 555 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 85,108 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-15 17:58:54
合計ジャッジ時間 2,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,824 KB
testcase_08 AC 26 ms
6,816 KB
testcase_09 AC 42 ms
6,816 KB
testcase_10 AC 37 ms
6,820 KB
testcase_11 AC 30 ms
6,816 KB
testcase_12 AC 14 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 RE -
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 27 ms
6,816 KB
testcase_19 AC 19 ms
6,816 KB
testcase_20 AC 12 ms
6,816 KB
testcase_21 AC 30 ms
6,816 KB
testcase_22 AC 16 ms
6,816 KB
testcase_23 RE -
testcase_24 AC 32 ms
6,816 KB
testcase_25 AC 19 ms
6,816 KB
testcase_26 AC 7 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
evil01.txt AC 44 ms
6,816 KB
evil02.txt AC 45 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include <vector>
#include<cmath>
#include<iomanip>
using namespace std;
typedef long long int lont;
int main() {
	int N;
	cin >> N;
	vector<int>veca(N);
	for (int ia = 0; ia < N; ia++) {
		cin >> veca.at(ia);
	}
	sort(veca.begin(), veca.end());
	int cnta = 0;
	if (veca.at(0) != veca.at(1)) {
		cnta++;
	}
	if (veca.at(N - 2) != veca.at(N - 1)) {
		cnta++;
	}
	for (int ib = 1; ib < N - 1; ib++) {
		if (veca.at(ib - 1) != veca.at(ib) && veca.at(ib) != veca.at(ib + 1)) {
			cnta++;
		}
	}
	cout << cnta << endl;
	}
0