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: 1120kB
Author: CT12811591281
In contest: 1281

#include<stdio.h>
int main(){
	int t,x,c;
	float a,b;
	while(~scanf("%d",&t)){
		b=0.0;
		c=0;
		for(x=1;x<=t;x++){
			scanf("%f",&a);
			if(a>=0){
				b=b+(a/2.0);
			}
			else b=b+a;
			if(b<0) c++;
		}
		printf("%d\n",c);
	}
}