Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
54294 zhangsicun 求分数序列和 Python3 编译错误 0 MS 0 KB 327 2024-10-27 09:10:09

Tests(0/0):


#include<iostream> using namespace std; int main() { int n; cin >> n; double sum = 0, a = 2, b = 1; for (int i = 1; i <= n; i++) { sum += a / b; long long temp = a; a = a + b; b = temp; } cout << fixed << setprecision(4) << sum << endl; return 0; }


测评信息: