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: 4ms
Memory: 1120kB
Author: 2018212212235
In contest: 1277

#include<stdio.h>
#include<math.h>
int main(){
	int a,b,c,d,e;
	int t;
	while(scanf("%d",&t)!=EOF){
		e=0;
		b=0;
		while(t--){
			scanf("%d",&a);
			if(a>0)
				e+=a/2;
			else
				e+=a;
			if(e<0)
				b++;

			}
		printf("%d\n",b);

	}
	return 0;
}