7 条题解

  • 1
    @ 2023-12-10 16:00:15
    #include<bits/stdc++.h>
    using namespace std;
    int t,b;
    void uss(){
        if(t==1&&b==2) cout<<"win";
        else if(t==2&&b==3) cout<<"win";
        else if(t==3&&b==1) cout<<"win";
        else if(t==b) cout<<"tie";
        else cout<<"lose";
    }
    int main(){
        cin>>t>>b;
        uss();
        return 0;
    }
    

    信息

    ID
    43
    时间
    1000ms
    内存
    16MiB
    难度
    3
    标签
    递交数
    106
    已通过
    60
    上传者