Codeforces627A【数学·有意思】

题意:
求有多少对( a , b ),a+b=s,a^b=x.(正整数)
思路:
a+b=a^b+a&b*2;

#include 
#include 
#include
#include 
#include 
using namespace std;
typedef __int64 LL;

int main()
{
    LL s,x;
    scanf("%I64d%I64d",&s,&x);
    LL t=(s-x)/2;
    if(s2||x&t)
    {
        puts("0");
        return 0;
    }
    LL ans=0;
    int cnt=0;
    bool flag=true;
    if(s==x)
        ans-=2;
    while(x)
    {
        if(x&1)
            cnt++;
        x>>=1;
    }
    ans+=(1LL<printf("%I64d\n",ans);
    return 0;
}

你可能感兴趣的:(codeforces)