結果

問題 No.2441 行列累乗
ユーザー YU HiroseYU Hirose
提出日時 2024-04-28 22:46:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,800 KB
最終ジャッジ日時 2024-04-28 22:46:56
合計ジャッジ時間 13,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 573 ms
43,412 KB
testcase_01 AC 540 ms
43,408 KB
testcase_02 AC 568 ms
43,408 KB
testcase_03 AC 549 ms
43,792 KB
testcase_04 AC 542 ms
43,396 KB
testcase_05 AC 552 ms
43,664 KB
testcase_06 AC 544 ms
43,800 KB
testcase_07 AC 564 ms
43,664 KB
testcase_08 AC 540 ms
43,536 KB
testcase_09 AC 574 ms
43,408 KB
testcase_10 AC 528 ms
43,404 KB
testcase_11 AC 581 ms
43,412 KB
testcase_12 AC 538 ms
43,528 KB
testcase_13 AC 566 ms
43,792 KB
testcase_14 AC 546 ms
43,400 KB
testcase_15 AC 540 ms
43,796 KB
testcase_16 AC 553 ms
43,732 KB
testcase_17 AC 542 ms
43,656 KB
testcase_18 AC 547 ms
43,524 KB
testcase_19 AC 544 ms
43,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
a = list(map(int, input().split()))
a += list(map(int, input().split()))
p = np.array(a).reshape((2, 2))
res = np.dot(p, p)
res = np.dot(res, p)
print(*res[0])
print(*res[1])
0