please help me solve the problem on SPOJ https://www.spoj.pl/problems/BISHOPS/
The logic of the problem is very easy i.e. 2*n-2
but i am getting WA bcoz i am not able to deal with the large inputs.[?]
plz help me how to get this AC.........
#include<stdio.h>
int main()
{
long long int n,bmax;
while(scanf("%lld",&n)!=EOF)
{
if(n==1)
printf("%d\n",1);
else
{
bmax=(2*n)-2;
printf("%lld\n",bmax);
}
}
return 0;
}
--
You received this message because you are subscribed to the Google Groups
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/algogeeks?hl=en.
<<325.png>>
