結果

問題 No.2976 高階多点評価
ユーザー ecotteaecottea
提出日時 2024-02-05 21:27:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 294 ms / 1,000 ms
コード長 392 bytes
コンパイル時間 1,848 ms
コンパイル使用メモリ 202,480 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-28 21:35:59
合計ジャッジ時間 11,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 26 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 4 ms
6,816 KB
testcase_17 AC 28 ms
6,820 KB
testcase_18 AC 294 ms
6,820 KB
testcase_19 AC 260 ms
6,820 KB
testcase_20 AC 272 ms
6,820 KB
testcase_21 AC 264 ms
6,820 KB
testcase_22 AC 264 ms
6,816 KB
testcase_23 AC 263 ms
6,820 KB
testcase_24 AC 272 ms
6,816 KB
testcase_25 AC 258 ms
6,816 KB
testcase_26 AC 267 ms
6,816 KB
testcase_27 AC 260 ms
6,816 KB
testcase_28 AC 266 ms
6,816 KB
testcase_29 AC 254 ms
6,816 KB
testcase_30 AC 251 ms
6,816 KB
testcase_31 AC 253 ms
6,820 KB
testcase_32 AC 244 ms
6,820 KB
testcase_33 AC 252 ms
6,820 KB
testcase_34 AC 275 ms
6,816 KB
testcase_35 AC 258 ms
6,820 KB
testcase_36 AC 265 ms
6,816 KB
testcase_37 AC 271 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS

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

int main() {
	int T;
	cin >> T;

	while (T--) {
		int n; double x;
		cin >> n >> x;

		complex<double> xp(x, 1), xn(x, -1), I(0, 1);
		
		auto res = pow(-1, n) * (pow(xn, -n - 1) - pow(xp, -n - 1)) / (2. * I);
		res *= pow(x * x + 1, n / 2. + 1);

		cout << fixed << setprecision(5) << res.real() << endl;
	}
}
0