A1077的第30行 `if (tmp1[0] == ' ') tmp1.erase(0); // kuchi字符串第一位可能是空格` 是不是应该改为 `if (tmp1[0] == ' ') tmp1.erase(0,1); ` 虽然不改也可以ac*^____^*