結果
問題 | No.1271 初めての級数 |
ユーザー | tnakao0123 |
提出日時 | 2020-10-30 23:23:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 817 bytes |
コンパイル時間 | 806 ms |
コンパイル使用メモリ | 94,012 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-07-22 03:06:03 |
合計ジャッジ時間 | 1,634 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 1271.cc: No.1271 初めての級数 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int CNT = 10000; /* typedef */ typedef long long ll; /* global variables */ /* subroutines */ /* main */ int main() { int k; scanf("%d", &k); double sum = 0.0; if (k == 0) { for (int i = 1; i <= CNT; i++) sum += 1.0 / ((ll)i * i); } else { for (int i = 1; i <= k; i++) sum += 1.0 / i; sum /= k; } printf("%.16lf\n", sum); return 0; }