标准开头

代码

#include<bits/stdc++.h>
using namespace std;
inline long long mr()
{
    
    
	long long x=0;bool f=0;char ch=getchar();
	while(ch<'0'||ch>'9'){
    
    if(ch=='-') f=1;ch=getchar();}
	while(ch>='0'&&ch<='9'){
    
    x=(x<<3)+(x<<1)+(ch^48);ch=getchar();}
	return f?-x:x;
}
int main()
{
    
    
	return 0;
}

其他

受到老师的建议和stone41123大佬的鼓舞,以后每个题我也都会写一篇解题报告(心路历程)了。

猜你喜欢

转载自blog.csdn.net/bmhkhtj/article/details/109130857