#include<bits/stdc++.h>
using namespace std;
inline int Read()
{
int f=1,num=0;
char ch=getchar();
while(0==isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
while(0!=isdigit(ch)) num=(num<<1)+(num<<3)+ch-'0',ch=getchar();
return num*f;
}
快读模板
最新推荐文章于 2025-10-04 22:37:12 发布
8695

被折叠的 条评论
为什么被折叠?



