結果

問題 No.2447 行列累乗根
ユーザー risujirohrisujiroh
提出日時 2023-08-25 23:30:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 396 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 50,460 KB
最終ジャッジ日時 2024-06-06 18:28:32
合計ジャッジ時間 16,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 466 ms
50,208 KB
testcase_01 AC 461 ms
44,324 KB
testcase_02 AC 444 ms
44,576 KB
testcase_03 AC 446 ms
45,088 KB
testcase_04 AC 441 ms
44,580 KB
testcase_05 AC 444 ms
44,312 KB
testcase_06 AC 443 ms
44,448 KB
testcase_07 AC 450 ms
45,080 KB
testcase_08 AC 450 ms
44,444 KB
testcase_09 AC 436 ms
44,444 KB
testcase_10 AC 452 ms
44,448 KB
testcase_11 AC 454 ms
44,448 KB
testcase_12 AC 453 ms
44,708 KB
testcase_13 AC 443 ms
44,708 KB
testcase_14 AC 457 ms
44,444 KB
testcase_15 AC 449 ms
44,568 KB
testcase_16 AC 457 ms
44,952 KB
testcase_17 AC 437 ms
44,824 KB
testcase_18 AC 507 ms
44,952 KB
testcase_19 AC 772 ms
45,080 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

import numpy as np


def solve() -> None:
    input = sys.stdin.readline
    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