#pragma GCC diagnostic warning "-Wextra" #pragma GCC diagnostic warning "-Wshadow" #include using namespace std; template bool cmin(A& a, B b) { return a > b && (a = b, true); } template bool cmax(A& a, B b) { return a < b && (a = b, true); } template ostream& operator<<(ostream& os, pair& p) { return os << '(' << p.first << ", " << p.second << ')'; } static bool debug = false; void dump() {} template void dump(A&& a, B&&... b) { if (debug) cout << a << (sizeof...(b) ? ' ' : '\n'), dump(b...); } template void dump1D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) cout << *i << (next(i) != a.end() ? ' ' : '\n'); } template void dump2D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) dump1D(*i), cout << (next(i) != a.end() ? "" : "\n"); } signed main() { cin.tie(nullptr)->sync_with_stdio(false); // debug = true; int N; cin >> N; vector A(N); for (int i = 0; i < N; i++) cin >> A.at(i); multiset MS; auto f = [&]() { if ((int)MS.size() < 2) return false; return *prev(MS.end()) > *MS.begin() + *next(MS.begin()); }; long ans = 0; for (int l = 0, r = 0; r < N; r++) { MS.insert(A.at(r)); while (f()) MS.erase(MS.find(A.at(l++))); dump(make_pair("l", l), make_pair("r", r)); ans += r - l; } cout << ans << '\n'; }