Start: Jul, 01, 2019 08:30:00
2019年度暑期短学期第四天
End: Jul, 01, 2019 11:30:00
Time elapsed:
Time remaining:

Problem_ID: D
Result: Accepted
Time: 5ms
Memory: 1120kB
Author: 2018212212074
In contest: 1277

#include<stdio.h>
int main(){
	int n,b;
	double a,x;
	while(scanf("%d",&n)!=EOF){
		a=0;
		b=0;
		while(n--){
			scanf("%lf",&x);
			if(x>0)
			a+=x/2;
			if(x<0)
			a+=x;
			if(a<0)
			b++;
		}
		printf("%d\n",b);
	}
	return 0;
}