题解 | #小红的取模构造#

小红的取模构造

https://www.nowcoder.com/practice/679758a0bde0479d88463438ccee81c4

# include<bits/stdc++.h>

using namespace std;

int t,a,b;
int main(){
    cin>>t;
    while(t--){
        cin>>a>>b;
        if(a==b && a!=0){
            cout<<-1<<" "<<-1<<endl;
            continue ;
        }
        if(a==b && a== 0){
            cout<<1<<" "<<1<<endl;
            continue;
        }
        if(a>b){
            if(a+b != a)
            cout<<a<<" "<<a+b<<endl;
            else
            cout<<a<<" "<<2*a+b<<endl;
            continue;
        }
        if(a<b){
            if(a+b != b)
            cout<<b+a<<" "<<b<<endl;
            else 
            cout<<2*b+a<<" "<<b<<endl;
            continue;
        }
    }


    return 0;
}

注意分类讨论

全部评论

相关推荐

安静的仰泳鲈鱼sp到手了:你这比赛获奖和实习,跟你的技术栈有半点关系吗😮
点赞 评论 收藏
分享
11-24 19:04
已编辑
湖南工商大学 Java
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务