結果

問題 No.1105 Many Triplets
ユーザー convexineqconvexineq
提出日時 2021-05-10 04:54:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 61,496 KB
最終ジャッジ日時 2024-09-19 08:50:50
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,288 KB
testcase_01 AC 35 ms
53,244 KB
testcase_02 AC 35 ms
52,940 KB
testcase_03 AC 34 ms
53,764 KB
testcase_04 AC 37 ms
53,632 KB
testcase_05 AC 37 ms
54,356 KB
testcase_06 AC 36 ms
53,180 KB
testcase_07 AC 35 ms
52,668 KB
testcase_08 AC 35 ms
53,312 KB
testcase_09 AC 35 ms
53,508 KB
testcase_10 AC 41 ms
61,496 KB
testcase_11 AC 41 ms
60,180 KB
testcase_12 AC 41 ms
60,748 KB
testcase_13 AC 41 ms
60,712 KB
testcase_14 AC 39 ms
59,952 KB
testcase_15 AC 39 ms
59,696 KB
testcase_16 AC 38 ms
59,348 KB
testcase_17 AC 39 ms
60,964 KB
testcase_18 AC 41 ms
60,220 KB
testcase_19 AC 38 ms
60,200 KB
testcase_20 AC 33 ms
52,736 KB
testcase_21 AC 34 ms
52,288 KB
testcase_22 AC 33 ms
53,100 KB
testcase_23 AC 34 ms
52,860 KB
testcase_24 AC 35 ms
52,272 KB
testcase_25 AC 34 ms
52,560 KB
testcase_26 AC 33 ms
52,488 KB
testcase_27 AC 33 ms
53,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def matmul(A,B): # A,B: 行列
    res = [[0]*len(B[0]) for _ in [None]*len(A)]
    for i, resi in enumerate(res):
        for k, aik in enumerate(A[i]):
            for j,bkj in enumerate(B[k]):
                resi[j] += aik*bkj
                resi[j] %= MOD
    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 [[int(i==j) for j in range(len(A))] for i in range(len(A))]

MOD=10**9+7
n = int(input())
a,b,c = map(int,input().split())
A = [[1,-1,0],[0,1,-1],[-1,0,1]]
v = matmul(matpow(A,n-1),[[a],[b],[c]])
r = v[0]+v[1]+v[2]
print(*r)
0