結果

問題 No.2447 行列累乗根
ユーザー 👑 hitonanodehitonanode
提出日時 2023-08-25 23:08:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 10,980 KB
実行使用メモリ 81,508 KB
最終ジャッジ日時 2023-08-25 23:08:12
合計ジャッジ時間 10,234 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import numpy as np

input = stdin.readline

def cb(a):
    if a >= 0:
        return pow(a, 1 / 3)
    else:
        return -pow(-a, 1 / 3)

T = int(input())

ret: list[str] = []

for _ in range(T):
    a, b = map(float, input().split())
    c, d = map(float, input().split())
    A = np.array([[a, b], [c, d]])

    eigval, eigvec = np.linalg.eigh(A)
    M = np.array([[eigvec[0][0], eigvec[0][1]], [eigvec[1][0], eigvec[1][1]]])

    e0 = cb(eigval[0])
    e1 = cb(eigval[1])

    B = M @ np.diag([e0, e1]) @ M.T
    ret.append("{:1.5f} {:1.5f}\n".format(B[0][0], B[0][1]))
    ret.append("{:1.5f} {:1.5f}\n".format(B[1][0], B[1][1]))


print("".join(ret))
0