結果

問題 No.2441 行列累乗
ユーザー TakaTaka
提出日時 2023-10-04 16:03:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,616 KB
最終ジャッジ日時 2024-07-26 14:45:56
合計ジャッジ時間 12,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,240 KB
testcase_01 AC 510 ms
44,364 KB
testcase_02 AC 514 ms
44,104 KB
testcase_03 AC 512 ms
43,976 KB
testcase_04 AC 518 ms
44,104 KB
testcase_05 AC 519 ms
44,368 KB
testcase_06 AC 515 ms
43,976 KB
testcase_07 AC 529 ms
44,492 KB
testcase_08 AC 523 ms
44,240 KB
testcase_09 AC 527 ms
44,380 KB
testcase_10 AC 519 ms
44,244 KB
testcase_11 AC 520 ms
44,236 KB
testcase_12 AC 513 ms
44,108 KB
testcase_13 AC 518 ms
44,112 KB
testcase_14 AC 516 ms
44,112 KB
testcase_15 AC 512 ms
44,488 KB
testcase_16 AC 514 ms
44,616 KB
testcase_17 AC 514 ms
44,492 KB
testcase_18 AC 511 ms
44,364 KB
testcase_19 AC 518 ms
44,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def dot(A1, A2, N):
    # N: 行列のサイズ
    A = np.zeros((N, N), dtype=int)
    for i in range(N):
        for j in range(N):
            for k in range(N):
                A[i][j] = (A[i][j] + (A1[i][k] * A2[k][j]))
    return A

def pow_mat(A, K, N):
    # A: 累乗する行列, k: 累乗数, n: 行列Aのサイズ
    P = np.eye(N, dtype=int)
    while K:
        if K & 1:
            P = dot(P, A, N)
        A = dot(A, A, N)
        K >>= 1
    return P
    
a,b = map(int,input().split())
c,d = map(int,input().split())

mat = np.array([[a, b], [c, d]], dtype=int)
ans_matrix = pow_mat(mat, 3, 2)

for row in ans_matrix:
    print(" ".join(map(str, row)))
0