結果

問題 No.2447 行列累乗根
ユーザー hitonanodehitonanode
提出日時 2023-08-25 22:09:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 64,464 KB
最終ジャッジ日時 2024-06-06 16:38:08
合計ジャッジ時間 28,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,519 ms
64,464 KB
testcase_01 AC 938 ms
58,964 KB
testcase_02 AC 980 ms
59,088 KB
testcase_03 AC 944 ms
58,324 KB
testcase_04 WA -
testcase_05 AC 927 ms
58,956 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 919 ms
58,572 KB
testcase_10 AC 926 ms
58,704 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 933 ms
58,964 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from scipy.linalg import fractional_matrix_power

T = int(input())

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

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

    eig = np.linalg.eig(A)
    M = np.array([[eig.eigenvectors[0][0], eig.eigenvectors[1][0]], [eig.eigenvectors[0][1], eig.eigenvectors[1][1]]])

    e0 = cb(eig.eigenvalues[0])
    e1 = cb(eig.eigenvalues[1])

    B = M.T * np.diag([e0, e1]) * M
    print("{:1.5f}".format(B[0][0]), "{:1.5f}".format(B[0][1]))
    print("{:1.5f}".format(B[1][0]), "{:1.5f}".format(B[1][1]))
0