結果

問題 No.2976 高階多点評価
ユーザー ecotteaecottea
提出日時 2024-02-06 14:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 1,000 ms
コード長 213 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,700 KB
最終ジャッジ日時 2024-11-28 21:36:35
合計ジャッジ時間 22,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 67 ms
66,432 KB
testcase_12 AC 195 ms
78,700 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 42 ms
52,096 KB
testcase_15 AC 42 ms
52,736 KB
testcase_16 AC 71 ms
66,560 KB
testcase_17 AC 187 ms
78,336 KB
testcase_18 AC 545 ms
78,336 KB
testcase_19 AC 482 ms
77,312 KB
testcase_20 AC 473 ms
77,568 KB
testcase_21 AC 494 ms
77,440 KB
testcase_22 AC 540 ms
78,336 KB
testcase_23 AC 483 ms
77,824 KB
testcase_24 AC 469 ms
77,588 KB
testcase_25 AC 467 ms
77,312 KB
testcase_26 AC 549 ms
78,208 KB
testcase_27 AC 478 ms
77,696 KB
testcase_28 AC 472 ms
77,312 KB
testcase_29 AC 474 ms
77,312 KB
testcase_30 AC 561 ms
78,560 KB
testcase_31 AC 471 ms
77,312 KB
testcase_32 AC 467 ms
77,696 KB
testcase_33 AC 469 ms
77,312 KB
testcase_34 AC 464 ms
77,312 KB
testcase_35 AC 479 ms
77,440 KB
testcase_36 AC 480 ms
77,568 KB
testcase_37 AC 469 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    n, x = input().split()
    n = int(n)
    x = float(x)

    res = ((x - 1j)**(-n-1) - (x + 1j)**(-n-1)) * (-1)**n / 2j
    res *= (x**2 + 1)**(n/2 + 1)
    print(res.real)
0