摘要: inline void read(__int128 &x) { x=0; int f=1;//判断正负 char ch=getchar();//读入字符 while(ch<'0'||ch>'9') { if(ch=='-') f=-1; ch=getchar(); } while(ch>='0'&& 阅读全文
posted @ 2024-02-22 19:01 potential-star 阅读(20) 评论(0) 推荐(0)