結果

問題 No.2976 高階多点評価
ユーザー ecotteaecottea
提出日時 2024-02-05 19:54:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 621 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-28 12:08:22
合計ジャッジ時間 6,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 39 ms
10,624 KB
testcase_12 AC 136 ms
10,752 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 42 ms
10,624 KB
testcase_17 AC 141 ms
10,624 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
import sys

content = input()
pattern = r'^(\d+)$'
result = re.match(pattern, content)

if not result:
    sys.exit("format error.")

T = int(content)

if not (1 <= T and T <= 10**5):
    sys.exit("T")

for _ in range(T):
    content = input()
    pattern = r'^(\d+) (-?0.\d{5})$'
    result = re.match(pattern, content)

    if not result:
        sys.exit("format error.")

    n, x = content.split()
    n = int(n)
    x = float(x)

    if not (0 <= n and n <= 10**5):
        sys.exit("N")

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