結果

問題 No.2441 行列累乗
ユーザー naut3naut3
提出日時 2023-09-02 11:07:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,700 KB
最終ジャッジ日時 2024-06-11 17:48:34
合計ジャッジ時間 10,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 440 ms
44,444 KB
testcase_01 AC 442 ms
44,160 KB
testcase_02 AC 442 ms
44,052 KB
testcase_03 AC 447 ms
44,168 KB
testcase_04 AC 441 ms
44,056 KB
testcase_05 AC 442 ms
44,176 KB
testcase_06 AC 445 ms
44,424 KB
testcase_07 AC 442 ms
44,180 KB
testcase_08 AC 448 ms
44,436 KB
testcase_09 AC 454 ms
44,436 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy

def main():
    M = [list(map(int, input().split())) for _ in range(2)]
    M = numpy.array(M)

    M = M * M * M

    print(M[0, 0], M[0, 1])
    print(M[1, 0], M[1, 1])


main()
0