結果

問題 No.1539 不可欠な部分
ユーザー ytftytft
提出日時 2021-08-14 19:35:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 1,454 ms
コンパイル使用メモリ 167,048 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-05 18:18:47
合計ジャッジ時間 25,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 374 ms
6,820 KB
testcase_02 AC 462 ms
6,820 KB
testcase_03 AC 199 ms
6,820 KB
testcase_04 AC 170 ms
6,816 KB
testcase_05 AC 130 ms
6,816 KB
testcase_06 AC 228 ms
6,820 KB
testcase_07 AC 56 ms
6,816 KB
testcase_08 AC 132 ms
6,820 KB
testcase_09 AC 374 ms
6,820 KB
testcase_10 AC 398 ms
6,816 KB
testcase_11 AC 453 ms
6,820 KB
testcase_12 AC 455 ms
6,820 KB
testcase_13 AC 428 ms
6,820 KB
testcase_14 AC 431 ms
6,816 KB
testcase_15 AC 457 ms
6,816 KB
testcase_16 AC 452 ms
6,816 KB
testcase_17 AC 393 ms
6,816 KB
testcase_18 AC 449 ms
6,820 KB
testcase_19 AC 448 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    int T;
    cin>>T;
    for(int i=0;i<T;i++){
        double N;
        cin>>N;
        double e=exp(1);
        double π=asin(1)*2;
        double a=1/e/π/π/N;
        printf("%.10f", N*e*(a-a*a*a/6+a*a*a*a*a/30-31*pow(a,7)/5040));
        cout<<endl;
    }
    
}
0