比赛 CSP2023-J模拟赛 评测结果 RRRRR
题目名称 挂分跑步 最终得分 0
用户昵称 嗨嗨嗨 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2023-10-18 19:44:08
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
string s,t;
inline void write(int x)
{
    if(x<0) putchar('-'),x=-x;
    if(x>9) write(x/10);
    putchar(x%10+'0');
}
int main()
{
    //freopen("cutstring.in","r",stdin);
    //freopen("cutstring.out","w",stdout);
    
    return 0;
}