結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 489 ms
43,428 KB
testcase_01 AC 483 ms
43,808 KB
testcase_02 AC 467 ms
43,560 KB
testcase_03 AC 472 ms
43,560 KB
testcase_04 AC 488 ms
43,432 KB
testcase_05 AC 481 ms
43,676 KB
testcase_06 AC 483 ms
44,056 KB
testcase_07 AC 473 ms
43,436 KB
testcase_08 AC 475 ms
43,540 KB
testcase_09 AC 475 ms
43,688 KB
testcase_10 AC 474 ms
43,432 KB
testcase_11 AC 481 ms
43,560 KB
testcase_12 AC 476 ms
44,040 KB
testcase_13 AC 480 ms
43,676 KB
testcase_14 AC 478 ms
44,064 KB
testcase_15 AC 484 ms
43,912 KB
testcase_16 AC 484 ms
43,676 KB
testcase_17 AC 483 ms
44,020 KB
testcase_18 AC 487 ms
43,944 KB
testcase_19 AC 485 ms
43,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

c = list(map(int, input().split(' ')))
d = list(map(int, input().split(' ')))

a = np.array([c,d])
ans = np.matmul(a,np.matmul(a,a))
print(*ans[0])
print(*ans[1])
0