void write(int x) { if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10+'0'); return; }
rt,如果我用这个朴素的模板输出1个字符,那么时间是多少?