結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
43,528 KB
testcase_01 AC 538 ms
43,408 KB
testcase_02 AC 536 ms
43,540 KB
testcase_03 AC 537 ms
43,528 KB
testcase_04 AC 536 ms
43,540 KB
testcase_05 AC 531 ms
43,776 KB
testcase_06 AC 533 ms
43,412 KB
testcase_07 AC 543 ms
43,412 KB
testcase_08 AC 536 ms
43,412 KB
testcase_09 AC 536 ms
43,660 KB
testcase_10 AC 545 ms
43,660 KB
testcase_11 AC 541 ms
43,912 KB
testcase_12 AC 527 ms
43,548 KB
testcase_13 AC 524 ms
43,664 KB
testcase_14 AC 526 ms
43,408 KB
testcase_15 AC 539 ms
43,284 KB
testcase_16 AC 539 ms
43,544 KB
testcase_17 AC 536 ms
43,788 KB
testcase_18 AC 526 ms
43,656 KB
testcase_19 AC 542 ms
43,548 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