結果

問題 No.454 逆2乗和
ユーザー xuzijian629
提出日時 2018-11-06 15:39:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 192,296 KB
最終ジャッジ日時 2025-01-06 15:37:47
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    cout.setf(ios::fixed);
    cout.precision(20);
    double x;
    cin >> x;
    long double y = x;

    long double sum = 0;
    for (int i = 100000; i >= 1; i--) {
        long double t = y + i;
        t = t * t;
        sum += 1.0 / t;
    }

    double k = sum;
    cout << k << endl;
}
0