Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
6539 18级李灏冬 2021北京队选拔模拟赛1-C C++ 解答错误 0 0 MS 244 KB 625 2021-04-03 11:51:45

Tests(0/10):


#include<bits/stdc++.h> #define int long long using namespace std; int read(){ int res=0; int f=1; char ch=getchar(); while(ch<'0' || ch>'9'){ if(ch=='-') f=-1; ch=getchar(); } while(ch>='0' && ch<='9'){ res=res*10+ch-'0'; ch=getchar(); } return res*f; } void out(int x){ if(x>=10) out(x/10); putchar(x%10+'0'); } void out1(int x){ if(x<0) putchar('-'); out(abs(x)); } void out2(int x){ out1(x); putchar('\n'); } signed main(){ out2(8); return 0; }


测评信息: