Sunday, 28 December 2014

UVA 10812 - Beat the Spread!(c file)

Problem Type : Ad hoc


#include<stdio.h>
int main()
{
    long int  sum,difference,x,y,n,i;
    while(scanf("%ld",&n)==1)
    {
        for(i=1; i<=n; i++)
        {
            scanf("%ld %ld",&sum,&difference);

            if(difference>sum||(sum-difference)%2!=0)
            {
                printf("impossible\n");
                continue;
            }
            else
            {
                x=(sum+difference)/2;
                y=x-difference;
                printf("%ld %ld\n",x,y);
            }
        }
}
return 0;
}

No comments:

Post a Comment

ট্রিগার এর মাধ্যমে ডাটা ইনসার্ট - insert data using Database Trigger (Mysql)

সর্বপ্রথম আমরা প্রবলেমটা বুঝিঃ আমি একটা টেবিলের একটা কলামের ভ্যালুর উপর ডিপেন্ড করে আরেকটা কলামে ডাটা insert করব । এই কাজটা ট্রি...