Start: Jul, 05, 2019 08:40:00
2019年度暑期短学期达标测试
End: Jul, 05, 2019 11:40:00
Time elapsed:
Time remaining:

Problem_ID: C
Result: Accepted
Time: 5ms
Memory: 1756kB
Author: CT12811291281
In contest: 1281

#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<cstdlib>
#include<algorithm>

using namespace std;

int main()
{
	int n;
	int x;
	while(scanf("%d", &n)!=EOF){
		int sum = 0;
		int t = 0;
        while(n--){
        	scanf("%d", &x);
        	if(x>0){
        		x/=2;
			}
			
			sum+=x;
			if(sum<0){
				t++;
			}
		}
		
		printf("%d\n", t);
	}
	
	
	return 0;
}