結果

問題 No.2441 行列累乗
ユーザー t98slidert98slider
提出日時 2023-06-10 10:06:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 31,884 KB
最終ジャッジ日時 2025-01-02 15:58:16
合計ジャッジ時間 11,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 402 ms
31,232 KB
testcase_01 AC 411 ms
31,188 KB
testcase_02 AC 411 ms
31,232 KB
testcase_03 AC 406 ms
31,376 KB
testcase_04 AC 414 ms
31,236 KB
testcase_05 AC 409 ms
31,884 KB
testcase_06 AC 417 ms
31,232 KB
testcase_07 AC 405 ms
31,232 KB
testcase_08 AC 415 ms
31,288 KB
testcase_09 AC 416 ms
31,232 KB
testcase_10 AC 408 ms
31,236 KB
testcase_11 AC 408 ms
31,240 KB
testcase_12 AC 407 ms
31,620 KB
testcase_13 AC 413 ms
31,232 KB
testcase_14 AC 408 ms
31,368 KB
testcase_15 AC 409 ms
31,108 KB
testcase_16 AC 416 ms
31,232 KB
testcase_17 AC 414 ms
31,292 KB
testcase_18 AC 414 ms
31,184 KB
testcase_19 AC 406 ms
31,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

a, b = map(int, input().split())
c, d = map(int, input().split())
M = np.matrix([[a, b], [c, d]])

np.savetxt(sys.stdout, M * M * M, fmt='%i')
0