我的个人网站 Cheese的个人主页http://www.cheese.ren/
博客来源 PAT 乙级 1056 组合数的和-Cheese的个人博客PAT 乙级 1056 组合数的和http://blog.cheese.ren/76
欢迎交换友链 :-)
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
scanf("%d", &n);
int index[n];
for (int i=0; i<n; i++)
scanf("%d", &index[i]);
int sum=0;
for (int i=0; i<n; i++)
for (int l=0; l<n; l++)
if (index[i] != index[l])
sum += index[i] * 10 + index[l];
printf("%d\n", sum);
return 0;
}