码迷,mamicode.com
首页 > 其他好文 > 详细

B. The Number of Products

时间:2019-10-09 22:35:45      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:can   div   clu   +=   namespace   main   using   style   ber   

#include<bits/stdc++.h>
using namespace std;
#define ll long long 
const int maxn=1e6+5;
long long n,s1=0,s2=0,a1=0,a2=0,c;
int main()
{
    scanf("%lld",&n);
    for(int i=1;i<=n;i++)
    {
        int x;
        scanf("%d",&x);
        if(x>0)
        {
            a1++;
        }
        else
        {
            c=a2;
            a2=a1;
            a1=c;
            a2++;
        }
        s1+=a1;
        s2+=a2;
    }
    printf("%lld %lld",s2,s1);

}

 

B. The Number of Products

标签:can   div   clu   +=   namespace   main   using   style   ber   

原文地址:https://www.cnblogs.com/Shallow-dream/p/11644818.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!