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: 2017212304046
In contest: 1277

#include <stdio.h>
int main()
{
	int s,h,n,a,i;
	while(scanf("%d",&n)!=EOF){
		s=h=0;
		for(i=0;i<n;i++){
			scanf("%d",&a);
			if(a<0){h=h+a;}
			else{h=h+a/2;}
			if(h<0){s=s+1;}}
		printf("%d\n",s);}
}