結果

問題 No.454 逆2乗和
ユーザー pekempey
提出日時 2016-12-05 00:09:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 1,388 ms
コンパイル使用メモリ 165,300 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 02:25:08
合計ジャッジ時間 2,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    long double x;
    cin >> x;
    long double ans = 0;
    const int N = 1000000;
    for (int64_t i = 1; i < N; i++) {
        ans += 1.0 / (x + i) / (x + i);
    }
    ans += 1 / (N + 0.5);
    printf("%.20f\n", (double)ans);
}
0