2014年4月23日 星期三

[UVA] 10642 - Can You Solve It?

/*20140423 hanting*/
#include <iostream>
using namespace std;
int main()
{
    int N;
    cin>>N;
    for(int times=1;times<=N;times++)
    {
        int x[2],y[2];
        for(int i=0;i<2;i++) cin>>x[i]>>y[i];
        int t1=0,t2=0;
        for(int i=1;i<=x[0]+y[0];i++)
        {
            t1+=i;
        }
        t1+=x[0];
        for(int i=1;i<=x[1]+y[1];i++)
        {
            t2+=i;
        }
        t2+=x[1];
        int ans=t2-t1;
        cout<<"Case "<<times<<": "<<ans<<endl;
    }
    return 0;
}

沒有留言:

張貼留言