欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

1056 组合数的和

程序员文章站 2022-06-07 18:54:09
...

1056 组合数的和

解题代码

#include<cstdio>
int n, sum, temp;
int main() {
	scanf("%d", &n);
	for (int i = 0; i < n; i++) {
		scanf("%d", &temp);
		sum += (temp + temp * 10)*(n - 1);
	}
	printf("%d", sum);
	return 0;
}

测试结果

1056 组合数的和

问题整理

1.基础题目。