結果

問題 No.2447 行列累乗根
ユーザー risujirohrisujiroh
提出日時 2023-08-25 22:51:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 51,656 KB
最終ジャッジ日時 2024-06-06 17:33:42
合計ジャッジ時間 17,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
50,468 KB
testcase_01 AC 518 ms
44,580 KB
testcase_02 AC 517 ms
44,964 KB
testcase_03 AC 519 ms
44,708 KB
testcase_04 AC 522 ms
45,476 KB
testcase_05 AC 521 ms
44,748 KB
testcase_06 AC 522 ms
44,708 KB
testcase_07 WA -
testcase_08 AC 520 ms
44,956 KB
testcase_09 AC 528 ms
44,956 KB
testcase_10 AC 527 ms
45,340 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 526 ms
45,476 KB
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 #

import numpy as np


def solve() -> None:
    a = np.array([list(map(float, input().split())) for _ in range(2)])
    res = np.linalg.eigh(a)
    d = np.diag(np.cbrt(res.eigenvalues))
    p = res.eigenvectors
    a = np.linalg.inv(p) @ d @ 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