結果

問題 No.1466 I am not genius.
ユーザー 鈴木ひでき鈴木ひでき
提出日時 2021-04-02 23:15:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,321 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 86,820 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-06 08:13:39
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <iomanip>
#include <iostream>
#include <limits>
#include <map>
#include <set>
#include <string>
#include <vector>
using namespace std;
typedef long long ll;

#define rep(i, init, end) for(ll i = init; i < end; i++)
#define REP(i, init, end) for(ll i = init; i < end + 1; i++)
#define rev(i, end, init) for(ll i = init - 1; i >= end; i--)
#define REV(i, end, init) for(ll i = init; i >= end; i--)
#define PI 3.14159265359
#define EPS 0.0000000001
#define MOD 1000000007
//cout << std::fixed << std::setprecision(15) << y << endl;


double g(ll n){
    double ans = 1.0;
    for(ll i = 1; i <= n; i++){
        ans *= (double)i;
    }

    return ans;
}

int main(){
    double x;
    cin >> x;

    double sum[10000];
    double a, b, c;
    ll p = 0;
    a = 1.0, b = 1.0, c = 1123.0 / 1103.0;
    sum[0] = a * b * c;
    while(abs(sum[p]) > 1e-20){
        p++;
        a *= -1.0 * pow(22, 5) * pow(882, 3) / (pow(49, 5) * 4.0 * 99.0);
        b = 1.0 / g(4 * p - 2) * (4 * p - 2);
        c = (1123.0 + 21460.0 * (double)p) / (1103.0 + 26390.0 * (double)p);
        sum[p] = a * b * c;
    }

    double ans = 24.0 / 882.0 * sqrt(99) * x;
    double sumAll = 0;
    rep(i, 0, p){
        sumAll += sum[p];
    }
    cout << fixed << setprecision(20) << ans * sumAll << endl;

    return 0;
} 
0