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

#include<stdio.h>
int main(){
	int n,m;
	while(~scanf("%d",&n)){
		double total1=0;
		int total2=0;
		for(int i=0;i<n;i++){
			scanf("%d",&m);
			if(m>=0)
			total1+=(m/2.0);
			else total1+=m;
			if(total1<0)
			total2++;
		}
		printf("%d\n",total2);
	}
	return 0;
}