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: CT12810731281
In contest: 1281

#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<string.h>
int main(){
	int n,num,temp;
	float lucky;
	while(scanf("%d",&n)!=EOF){
		num = 0;
		lucky=0;
		while(n--){
			scanf("%d",&temp);
			if(temp<0){
				lucky += temp;
			}else{
				lucky += temp*0.5;
			}
			if(lucky<0){
				num++;
			}
		}
		printf("%d\n",num);
	}
}