結果

問題 No.454 逆2乗和
ユーザー xuzijian629
提出日時 2018-11-18 18:55:08
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 193,432 KB
最終ジャッジ日時 2025-01-06 16:52:34
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 p = 1;
    double x;
    cin >> x;
    for (int i = 1; i < 100000000; i++) {
        p *= exp(1.0 / (x + i) / (x + i));
    }
    cout << log(p) << endl;
}
0