0_0_36326850_32736.cpp: In instantiation of 'void IO::write(T) [with T = const char*]':
0_0_36326850_32736.cpp:79:5: required from 'void IO::write(T, Args ...) [with T = long long int; Args = {const char*}]'
0_0_36326850_32736.cpp:183:22: required from here
0_0_36326850_32736.cpp:67:20: error: wrong type argument to unary minus
if (x < 0) x = -x, push('-'); // ¸ºÊýÊä³ö
^
0_0_36326850_32736.cpp:71:22: error: invalid operands of types 'const char*' and 'int' to binary 'operator%'
sta[top++] = x % 10, x /= 10;
^
0_0_36326850_32736.cpp:71:10: error: array subscript is not an integer
sta[top++] = x % 10, x /= 10;
^
0_0_36326850_32736.cpp:71:30: error: invalid operands of types 'const char*' and 'int' to binary 'operator/'
sta[top++] = x % 10, x /= 10;
^
0_0_36326850_32736.cpp:71:30: error: in evaluation of 'operator/=(const char*, int)'
0_0_36326850_32736.cpp:73:25: error: array subscript is not an integer
while (top) push(sta[--top] + '0');
^
|