#include
#include
#include
#include
#include
using namespace std;
void solveMethod(int n, const vector服务器托管网& lines)
{
int res = 0;
for(int i = 0; i {
deque ints;
stringst服务器托管网ream ss(lines[i]);
string item;
while(getline(ss, item, ‘,’))
{
ints.push_back(item);
}
int max = 0;
for(int j = 0; j {
ints.push_back(ints.front());
ints.pop_front();
string binInt = “”;
for(int k = 0; k {
binInt += ints[k];
}
int sum = stoi(binInt, nullptr, 2);
if(sum > max)
{
max = sum;
}
}
res += max;
}
cout }
int main()
{
int n;
cin >> n;
vector lines(n);
for(int i = 0; i {
cin >> lines[i];
}
solveMethod(n, lines);
return 0;
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
某日二师兄参加XXX科技公司的C++工程师开发岗位第21面: 面试官:用过STL吗? 二师兄:(每天都用好吗。。)用过一些。 面试官:你知道STL是什么? 二师兄:STL是指标准模板库(Standard Template Library),是C++区别于C语言…