pat 1104 Sum of Number Segments (20分) 测试点3需要long double

Posted myrtle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pat 1104 Sum of Number Segments (20分) 测试点3需要long double相关的知识,希望对你有一定的参考价值。

题目链接:https://pintia.cn/problem-sets/994805342720868352/problems/994805363914686464

模拟题,新改的测试数据需要long double型,如果测试点3无法通过,可以参考以下代码:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n;
    long double tmp,sum=0;
    cin>>n;
    for(int i=0;i<n;i++)
    {
        cin>>tmp;
        sum+=tmp*(n-i)*(i+1);
    }
    printf("%.2Lf
",sum);
    return 0;
} 

 

以上是关于pat 1104 Sum of Number Segments (20分) 测试点3需要long double的主要内容,如果未能解决你的问题,请参考以下文章

PAT甲级——1104 Sum of Number Segments (数学规律自动转型)

1104. Sum of Number Segments (20)数学题——PAT (Advanced Level) Practise

PAT (Advanced Level) 1104. Sum of Number Segments (20)

1104. Sum of Number Segments (20)数学题——PAT (Advanced Level) Practise

1104. Sum of Number Segments (20)数学题——PAT (Advanced Level) Practise

PAT 甲级 1104 Sum of Number Segments (20分)(有坑,int *int 可能会溢出)