結果

問題 No.2447 行列累乗根
ユーザー risujirohrisujiroh
提出日時 2023-08-25 23:24:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 353 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-06-06 18:19:59
合計ジャッジ時間 15,772 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
49,932 KB
testcase_01 AC 478 ms
45,176 KB
testcase_02 AC 485 ms
44,688 KB
testcase_03 AC 480 ms
45,204 KB
testcase_04 AC 490 ms
45,196 KB
testcase_05 AC 479 ms
45,068 KB
testcase_06 AC 482 ms
45,448 KB
testcase_07 AC 500 ms
44,812 KB
testcase_08 AC 481 ms
45,196 KB
testcase_09 AC 474 ms
44,948 KB
testcase_10 AC 482 ms
44,824 KB
testcase_11 AC 474 ms
44,936 KB
testcase_12 AC 485 ms
44,720 KB
testcase_13 AC 479 ms
45,200 KB
testcase_14 AC 487 ms
45,328 KB
testcase_15 AC 490 ms
45,196 KB
testcase_16 AC 488 ms
44,948 KB
testcase_17 AC 484 ms
44,820 KB
testcase_18 AC 538 ms
45,328 KB
testcase_19 AC 958 ms
44,680 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve() -> None:
    a = np.array([list(map(float, input().split())) for _ in range(2)])
    d, p = np.linalg.eigh(a)
    d = np.diag(np.cbrt(d))
    a = p @ d @ np.linalg.inv(p)
    for i in range(2):
        for j in range(2):
            print(f"{a[i, j]:.5f}", end=" \n"[j == 1])


for _ in range(int(input())):
    solve()
0