結果

問題 No.454 逆2乗和
ユーザー kimiyukikimiyuki
提出日時 2016-12-05 02:16:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 38,016 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 02:41:28
合計ジャッジ時間 13,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cmath>
#define repeat_from(i,m,n) for (int i = (m); (i) < (n); ++(i))
int main() {
    long double x; scanf("%Lf", &x);
    long double y = 0;
    repeat_from (n,1,10000000) y += powl(x+n, -2);
    y += 0.0000001;
    printf("%.12Lf\n", y);
    return 0;
}
0