其他分享
首页 > 其他分享> > 1065 A+B and C (64bit) (20分)

1065 A+B and C (64bit) (20分)

作者:互联网

PAT上有个错误数据是错的,PAT上说明数据范围是\([-2^{63}, 2^{63}]\),但这个区间里一共有 \(2^{64} + 1\) 个数,已经超出了64bit的范围。

AcWing上将范围限制到了 \([-2^{63}, 2^{63} - 1]\)。

LL a,b,c;
int n;

int main()
{
    cin>>n;

    for(int i=1;i<=n;i++)
    {
        cout<<"Case #"<<i<<": ";
        scanf("%lld%lld%lld",&a,&b,&c);
        LL sum=a+b;
        if(a>0 && b>0 && sum<0) //上溢
            cout<<"true"<<endl;
        else if(a<0 && b<0 && sum>=0) //下溢
            cout<<"false"<<endl;
        else if(sum>c)
            cout<<"true"<<endl;
        else
            cout<<"false"<<endl;
    }

    //system("pause");
    return 0;
}

标签:20,int,64bit,1065,63,&&,PAT,范围
来源: https://www.cnblogs.com/fxh0707/p/14250817.html