标签:turn cin return static 其他 clu als space for
给定 N 个非 0 的个位数字,用其中任意 2 个数字都可以组合成 1 个 2 位的数字。要求所有可能组合出来的 2 位数字的和。例如给定 2、5、8,则可以组合出:25、28、52、58、82、85,它们的和为330。
输入在一行中先给出 N(1 < N < 10),随后给出 N 个不同的非 0 个位数字。数字间以空格分隔。
输出所有可能组合出来的2位数字的和。
3 2 8 5
330
对于每一个输入的数字temp,都能和其他N-1个数字组合出新的数字,temp能够放在个位也能够放在十位,所以每个数字temp都能在个位出现(N-1)次
#include<bits/stdc++.h>
using namespace std;
static const auto _ = []()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
return nullptr;
}();
int main() {
int N, sum = 0, temp;
cin >> N;
for (int i = 0; i < N; i++) {
cin >> temp;
sum += temp * 11 * (N - 1);
}
cout << sum << endl;
return 0;
}
标签:turn cin return static 其他 clu als space for
原文地址:https://www.cnblogs.com/Kanna/p/12517377.html