結果

問題 No.572 妖精の演奏
ユーザー convexineqconvexineq
提出日時 2021-02-25 00:58:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 66,896 KB
最終ジャッジ日時 2024-09-25 01:44:22
合計ジャッジ時間 2,084 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,812 KB
testcase_01 AC 47 ms
61,516 KB
testcase_02 AC 44 ms
60,240 KB
testcase_03 AC 43 ms
59,292 KB
testcase_04 AC 46 ms
61,664 KB
testcase_05 AC 47 ms
63,428 KB
testcase_06 AC 45 ms
60,988 KB
testcase_07 AC 44 ms
60,920 KB
testcase_08 AC 45 ms
61,788 KB
testcase_09 AC 49 ms
63,072 KB
testcase_10 AC 51 ms
63,992 KB
testcase_11 AC 53 ms
64,708 KB
testcase_12 AC 53 ms
65,728 KB
testcase_13 AC 57 ms
66,896 KB
testcase_14 AC 48 ms
61,920 KB
testcase_15 AC 49 ms
62,548 KB
testcase_16 AC 49 ms
62,448 KB
testcase_17 AC 50 ms
62,384 KB
testcase_18 AC 46 ms
60,924 KB
testcase_19 AC 38 ms
52,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def matmul(A,B): # A,B: 行列
    res = [[0]*len(B[0]) for _ in range(len(A))]
    for i, resi in enumerate(res):
        for k, aik in enumerate(A[i]):
            for j,bkj in enumerate(B[k]):
                resi[j] = max(resi[j],aik+bkj)
    return res

def matpow(A,p): #A^p mod M
    if p%2:
        return matmul(A, matpow(A,p-1))
    elif p > 0:
        b = matpow(A,p//2)
        return matmul(b,b)
    else:
        return [[0 if i == j else -(1<<31) for j in range(len(A))] for i in range(len(A))]

n = int(input())
m = int(input())
a = [list(map(int,input().split())) for _ in range(m)]
r = matmul([[0]*m],matpow(a,n-1))
print(max(r[0]))
0