結果
| 問題 |
No.1271 初めての級数
|
| コンテスト | |
| ユーザー |
misora192
|
| 提出日時 | 2020-12-09 22:27:16 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 318 bytes |
| コンパイル時間 | 1,645 ms |
| コンパイル使用メモリ | 166,316 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-19 05:04:45 |
| 合計ジャッジ時間 | 2,265 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 WA * 1 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)
using namespace std;
typedef long long ll;
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
int k;
cin >> k;
double ans = 0.0;
for(int i = 1; i <= k; i++){
ans += 1.0 / i;
}
cout << setprecision(10) << fixed << ans / k << endl;
}
misora192