結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 371 ms
31,232 KB
testcase_01 AC 358 ms
31,616 KB
testcase_02 AC 353 ms
31,188 KB
testcase_03 AC 357 ms
31,232 KB
testcase_04 AC 364 ms
31,108 KB
testcase_05 AC 361 ms
31,236 KB
testcase_06 AC 353 ms
31,184 KB
testcase_07 AC 348 ms
31,228 KB
testcase_08 AC 360 ms
31,360 KB
testcase_09 AC 356 ms
31,228 KB
testcase_10 AC 416 ms
31,100 KB
testcase_11 AC 358 ms
31,236 KB
testcase_12 AC 355 ms
31,612 KB
testcase_13 AC 353 ms
31,236 KB
testcase_14 AC 355 ms
31,496 KB
testcase_15 AC 353 ms
31,112 KB
testcase_16 AC 351 ms
31,232 KB
testcase_17 AC 349 ms
31,240 KB
testcase_18 AC 355 ms
31,108 KB
testcase_19 AC 357 ms
31,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy

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

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