結果
問題 | No.1271 初めての級数 |
ユーザー | yuruhiya |
提出日時 | 2020-10-30 21:31:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 286 bytes |
コンパイル時間 | 4,099 ms |
コンパイル使用メモリ | 327,936 KB |
最終ジャッジ日時 | 2025-01-15 16:46:09 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#include <bits/stdc++.h> #include <boost/math/special_functions/polygamma.hpp> using namespace std; using namespace boost; int main() { int k; cin >> k; if (k == 0) { puts("1.644934066848"); } else { printf("%.12f\n", (math::polygamma(0, k + 1) + 0.5772156649) / k); } }