結果

問題 No.2441 行列累乗
ユーザー FromBooskaFromBooska
提出日時 2023-08-25 21:27:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,064 KB
最終ジャッジ日時 2024-06-06 15:43:28
合計ジャッジ時間 13,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
43,444 KB
testcase_01 AC 524 ms
43,800 KB
testcase_02 AC 531 ms
43,720 KB
testcase_03 AC 522 ms
43,796 KB
testcase_04 AC 525 ms
43,800 KB
testcase_05 AC 520 ms
43,708 KB
testcase_06 AC 528 ms
43,800 KB
testcase_07 AC 520 ms
43,804 KB
testcase_08 AC 519 ms
43,548 KB
testcase_09 AC 523 ms
43,548 KB
testcase_10 AC 516 ms
43,548 KB
testcase_11 AC 506 ms
43,932 KB
testcase_12 AC 503 ms
44,064 KB
testcase_13 AC 501 ms
43,812 KB
testcase_14 AC 495 ms
43,552 KB
testcase_15 AC 498 ms
43,552 KB
testcase_16 AC 510 ms
43,928 KB
testcase_17 AC 509 ms
43,936 KB
testcase_18 AC 504 ms
44,056 KB
testcase_19 AC 501 ms
43,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
#np.set_printoptions(precision=10, floatmode='maxprec')
#original = np.array([[1, 0], [0, 1]])
N1, N2 = map(int, input().split())
N3, N4 = map(int, input().split())
M = np.array([[N1, N2], [N3, N4]])
ans = np.linalg.matrix_power(M, 3)
print(*ans[0])
print(*ans[1])
0