C++的 傻瓜式解法,但效率不错,70% #include <bits/stdc++.h> using namespace std; int calculate_char(char c){ //用于计算单个字符的数字以及合法性 if(c<'0' || c>'9') return -1; return c-'0'; } vector<int> split_str(string str){ int i = 0; vector<int> res(2,0); int x=0,y=0; while(!s...