
终于get到了HR同款快读快输!!!
#include
using namespace std;
#define int long long
#define rint register int
inline int read() {
char ch=getchar();
int x=0,m=1;
while(!isdigit(ch)){
if (ch=='-') m=-1;
ch=getchar();
}
while(isdigit(ch)){
x=x*10+ch-'0';
ch=getchar();
}
return x*m;
}
inline void write(int x) {
if (x<0){
putchar('-');
write(-x);
return;
}
if (x>=10) write(x/10);
putchar(x%10+'0');
}
inline void l1() {
puts("");
}
signed main() {
return 0;
}
太开心了
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)