2024年4月22日
摘要: void write(int x){ if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10+'0'); return; } inline int read(){ int x=0,f=1; char ch=getchar(); whi 阅读全文
posted @ 2024-04-22 16:35 风ffff 阅读(16) 评论(0) 推荐(0)