1 条题解

  • 0
    @ 2025-1-6 19:31:23

    官方题解(我是这题出题人):

    #include<bits/stdc++.h>
    using namespace std;
    string op;
    int idd;
    char ch;
    int main(){
        cin>>op>>idd>>ch;
        if(op=="CF"){
            cout<<op<<idd<<ch<<endl;
        }else{
            cout<<op<<idd<<"Contest_"<<ch;
        }
        return 0;
    }
    

    信息

    ID
    48
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    3
    已通过
    2
    上传者