結果
問題 |
No.454 逆2乗和
|
ユーザー |
![]() |
提出日時 | 2018-11-18 18:57:01 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 423 bytes |
コンパイル時間 | 2,167 ms |
コンパイル使用メモリ | 193,192 KB |
最終ジャッジ日時 | 2025-01-06 16:52:48 |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 31 |
ソースコード
#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 < 10000000; i++) { p *= exp(1.0 / (x + i) / (x + i)); } cout << log(p) << endl; }