Source Code
//Includes
#include <bits/stdc++.h>
#include <cstdio> //For input/ouput file
#include <numeric> //For GCD and LCM
#include <iomanip> //For Decimal Points
#include <chrono>

//Marcos
#define fast_io() std::ios::sync_with_stdio(false); std::cin.tie(NULL);
#define ArrOne(name, type, size) type* name = new type[size]
#define ArrTwo(name, type, rows, cols) type** name = new type*[rows]; for(int i = 0; i < rows; i++){ name[i] = new type[cols]; }
#define sp(a, b, type) { type temp = a; a = b; b = temp; }
#define all(x) x.begin(), x.end()
#define pb(i) push_back(i)
#define PI 3.14159265358979
#define MOD 1000000007
#define ll long long
#define lli long long int
#define ull unsigned long long
#define ld long double


void solve() {
    int n, x; std::cin >> n;
    int ans = 0, sum = 0;
    for(int i = 0; i < n; ++i) {
        std::cin >> x;
        sum += x;
        if(sum <= 0) {
            ans += (1 - sum);
            sum = 1;
        }
    }
    std::cout << ans << "\n";
}

//main function
int main()
{
    //#
    fast_io();
    //#

    //#
    #ifndef ONLINE_JUDGE
        std::freopen("input.txt", "r", stdin);
        std::freopen("output.txt", "w", stdout);
    #endif
    //#

    solve();

    return 0;
}
Copy
Zeina The Business Owner talalomar001
GNU G++17
9 ms
1.1 MB
Accepted