码迷,mamicode.com
首页 > 其他好文 > 详细

PAT 数列的片段和【简单数论】

时间:2017-03-03 01:29:05      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:div   cti   nbsp   color   its   log   proc   img   pre   

技术分享

1
2
3
4
5
6
7
8
9
10
11
12
#include <bits/stdc++.h>
typedef long long LL;
using namespace std;
int main() {
    int n;
    double a[100010];
    double sum = 0;
    cin >> n;
    for(int i = 0; i < n; i++) scanf("%lf",&a[i]);
    for(int i = 0; i < n; i++) sum += a[i] * (n - i) * (i + 1);
    printf("%.2f\n",sum);
}

PAT 数列的片段和【简单数论】

标签:div   cti   nbsp   color   its   log   proc   img   pre   

原文地址:http://www.cnblogs.com/zhwong/p/6493243.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!