結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
Eclair1015
|
| 提出日時 | 2018-09-05 23:00:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 625 bytes |
| 記録 | |
| コンパイル時間 | 808 ms |
| コンパイル使用メモリ | 68,348 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-15 17:24:22 |
| 合計ジャッジ時間 | 2,140 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 WA * 5 |
ソースコード
//inlclude前用define
#define _USE_MATH_DEFINES
//include
#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<cmath>
using namespace std;
//typedef
typedef vector<int> VI;
typedef vector<string> VS;
typedef vector<char> VC;
int main() {
int n;
cin >> n;
VI a(n);
for (int i = 0; i < n; i++) cin >> a[i];
sort(a.begin(), a.end());
int memo = a[0],cnt=0;
bool sinki = true;
for (int i = 1; i < n; i++) {
if (memo == a[i]) {
sinki = false;
} else {
memo = a[i];
if (sinki) {
if (i == 1) cnt++;
cnt++;
}
sinki = true;
}
}
cout << cnt << endl;
return 0;
}
Eclair1015