1086. Max discrepancy

51151201048

二维线段树老是T,加了个读入加速,笑哈哈!
inline int INP(){
int x = 0;
char c;
while((c = getchar()) != ‘ ‘ && c != ‘\n’){
x = x * 10 + c - ‘0’;
}
return x;
}

你当前正在回复 博客/题目
存在问题!