結果

問題 No.2441 行列累乗
ユーザー VvyLwVvyLw
提出日時 2023-08-25 22:36:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,316 KB
最終ジャッジ日時 2024-06-06 17:15:57
合計ジャッジ時間 12,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
43,656 KB
testcase_01 AC 517 ms
43,676 KB
testcase_02 AC 522 ms
44,048 KB
testcase_03 AC 524 ms
44,052 KB
testcase_04 AC 528 ms
44,044 KB
testcase_05 AC 523 ms
44,064 KB
testcase_06 AC 525 ms
44,052 KB
testcase_07 AC 526 ms
44,316 KB
testcase_08 AC 529 ms
44,056 KB
testcase_09 AC 529 ms
44,308 KB
testcase_10 AC 525 ms
43,652 KB
testcase_11 AC 522 ms
44,048 KB
testcase_12 AC 519 ms
44,304 KB
testcase_13 AC 521 ms
44,036 KB
testcase_14 AC 523 ms
44,060 KB
testcase_15 AC 528 ms
43,660 KB
testcase_16 AC 517 ms
44,192 KB
testcase_17 AC 521 ms
44,056 KB
testcase_18 AC 516 ms
44,188 KB
testcase_19 AC 519 ms
44,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
a,b=map(int,input().split())
c,d=map(int,input().split())
A=np.array([[a,b],[c,d]])
A=A@A@A
A.tolist()
print(*A[0])
print(*A[1])
0