結果

問題 No.2976 高階多点評価
ユーザー ecotteaecottea
提出日時 2024-11-28 21:46:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 79,088 KB
最終ジャッジ日時 2024-11-28 21:46:46
合計ジャッジ時間 23,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,348 KB
testcase_01 AC 39 ms
53,264 KB
testcase_02 AC 40 ms
52,660 KB
testcase_03 AC 39 ms
53,024 KB
testcase_04 AC 39 ms
52,596 KB
testcase_05 AC 38 ms
52,932 KB
testcase_06 AC 39 ms
52,928 KB
testcase_07 AC 38 ms
52,776 KB
testcase_08 AC 39 ms
53,264 KB
testcase_09 AC 39 ms
52,824 KB
testcase_10 AC 42 ms
53,744 KB
testcase_11 AC 66 ms
67,080 KB
testcase_12 AC 197 ms
79,088 KB
testcase_13 AC 38 ms
53,804 KB
testcase_14 AC 39 ms
53,028 KB
testcase_15 AC 41 ms
53,140 KB
testcase_16 AC 67 ms
66,856 KB
testcase_17 AC 189 ms
78,668 KB
testcase_18 AC 544 ms
78,512 KB
testcase_19 AC 469 ms
77,484 KB
testcase_20 AC 470 ms
77,660 KB
testcase_21 AC 483 ms
77,708 KB
testcase_22 AC 558 ms
78,428 KB
testcase_23 AC 527 ms
77,724 KB
testcase_24 AC 465 ms
77,524 KB
testcase_25 AC 469 ms
77,988 KB
testcase_26 AC 549 ms
78,428 KB
testcase_27 AC 464 ms
77,596 KB
testcase_28 AC 469 ms
77,896 KB
testcase_29 AC 469 ms
77,544 KB
testcase_30 AC 544 ms
78,828 KB
testcase_31 AC 498 ms
78,092 KB
testcase_32 AC 465 ms
77,660 KB
testcase_33 AC 459 ms
77,940 KB
testcase_34 AC 474 ms
77,624 KB
testcase_35 AC 456 ms
77,704 KB
testcase_36 AC 465 ms
77,656 KB
testcase_37 AC 459 ms
77,472 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