結果
問題 | No.1271 初めての級数 |
ユーザー | Example0911 |
提出日時 | 2020-10-30 21:25:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 356 bytes |
コンパイル時間 | 2,008 ms |
コンパイル使用メモリ | 193,928 KB |
最終ジャッジ日時 | 2025-01-15 16:37:29 |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#include "bits/stdc++.h" using namespace std; int main() { int k; cin >> k; cout << fixed << setprecision(15); if (k == 0) { long double PI = 3.1415926535; cout << PI * PI / 6.0 << endl; return 0; } long double now = 0; for (int i = 1; i <= k; i++) { now += 1.0 / (long double)i; } now /= (long double)k; cout << now << endl; return 0; }