1046 划拳 (15 分)

水题~

int n;

int main()
{
    cin>>n;

    int cnta=0,cntb=0;
    for(int i=0;i<n;i++)
    {
        int a,suma,b,sumb;
        cin>>a>>suma>>b>>sumb;
        if(suma == a+b && sumb != a+b) cntb++;
        if(sumb == a+b && suma != a+b) cnta++;
    }
    cout<<cnta<<' '<<cntb<<endl;
    //system("pause");
    return 0;
}
上一篇:codeforces1458B. Glass Half Spilled


下一篇:LeetCode.888 公平的糖果棒交换