結果
問題 | No.182 新規性の虜 |
ユーザー | toku |
提出日時 | 2018-12-16 18:26:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,009 bytes |
コンパイル時間 | 1,290 ms |
コンパイル使用メモリ | 162,440 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 06:34:26 |
合計ジャッジ時間 | 6,644 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
evil01.txt | RE | - |
evil02.txt | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:28:15: warning: ‘n’ is used uninitialized [-Wuninitialized] 28 | VI a(n); | ^
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<int(n); i++) #define FOR(i,m,n) for(int i=int(m); i<int(n); i++) #define ALL(obj) (obj).begin(),(obj).end() #define VI vector<int> #define VLL vector<long long> #define VVI vector<vector<int>> #define VVLL vector<vector<long long>> #define VC vector<char> #define VS vector<string> #define VVC vector<vector<char>> #define fore(i,a) for(auto &i:a) typedef long long ll; typedef pair <int, int> P; template<class T> bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } const int INF = 2147483647; const ll INFL = 9223372036854775807; const ll mod = 1000000007; int main() { int n; VI a(n); REP(i, n)cin >> a[i]; sort(ALL(a)); int ans = 0; if (a[0] != a[1])ans++; if (a[n - 2] != a[n - 1])ans++; REP(i, n - 2) { if (a[i] != a[i + 1] && a[i + 1] != a[i + 2])ans++; } cout << ans << endl; return 0; }