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: 1756kB
Author: CT12812081281
In contest: 1281

#include<iostream>
#include<algorithm>

using namespace std;

int main(){
    int res,n,lk;
    double a;
    while(scanf("%d",&n)!=EOF){
        res=0;
        lk=0;
        while(n--){
            scanf("%lf",&a);
            if(a>0){
                a=a/2;
            }
            lk+=a;
            if(lk<0){
                res++;
            }
        }
        printf("%d\n",res);
        
    }
    return 0;
}