結果

問題 No.2976 高階多点評価
ユーザー SSRSSSRS
提出日時 2024-11-29 22:49:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 2,647 ms
コンパイル使用メモリ 202,260 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-29 22:49:57
合計ジャッジ時間 23,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 2 ms
8,704 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 2 ms
8,704 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 2 ms
8,704 KB
testcase_06 AC 2 ms
8,960 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 32 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int MAX = 200;
int main(){
  cout << fixed << setprecision(20);
  vector<long double> fact(MAX + 1);
  fact[0] = 1;
  for (int i = 1; i <= MAX; i++){
    fact[i] = fact[i - 1] * i;
  }
  auto get = [&](int n, int k){
    if ((n + k) % 2 == 1){
      return (long double) 0;
    }
    long double a = fact[n + 1] / fact[k] / fact[n + 1 - k];
    if ((n + k) % 4 == 2){
      a *= -1;
    }
    return a;
  };
  int T;
  cin >> T;
  for (int i = 0; i < T; i++){
    int N;
    long double x;
    cin >> N >> x;
    long double s = 0;
    for (int j = N; j >= 0; j--){
      s = s * x + get(N, j);
    }
    s *= pow(x * x + 1, -(long double) N / 2);
    cout << s << endl;
  }
}
0