結果

問題 No.2441 行列累乗
ユーザー irohasu19_irohasu19_
提出日時 2023-08-25 21:42:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,172 KB
最終ジャッジ日時 2024-06-06 16:05:52
合計ジャッジ時間 12,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
43,896 KB
testcase_01 AC 480 ms
44,028 KB
testcase_02 AC 475 ms
44,160 KB
testcase_03 AC 481 ms
43,904 KB
testcase_04 AC 483 ms
44,028 KB
testcase_05 AC 528 ms
43,904 KB
testcase_06 AC 524 ms
43,772 KB
testcase_07 AC 493 ms
43,668 KB
testcase_08 AC 482 ms
44,024 KB
testcase_09 AC 481 ms
44,032 KB
testcase_10 AC 483 ms
44,032 KB
testcase_11 AC 489 ms
44,024 KB
testcase_12 AC 475 ms
43,900 KB
testcase_13 AC 481 ms
44,028 KB
testcase_14 AC 477 ms
44,024 KB
testcase_15 AC 483 ms
43,904 KB
testcase_16 AC 471 ms
43,928 KB
testcase_17 AC 488 ms
43,900 KB
testcase_18 AC 479 ms
43,776 KB
testcase_19 AC 476 ms
44,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
import numpy as np
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n_1, n_2 = mi()
n_3, n_4 = mi()

m = np.matrix([[n_1, n_2], [n_3, n_4]])
m = m**3
print(m[0, 0], m[0, 1])
print(m[1, 0], m[1, 1])
0