結果

問題 No.891 隣接3項間の漸化式
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-08 01:56:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-05-07 00:27:10
合計ジャッジ時間 3,666 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,508 KB
testcase_01 AC 38 ms
52,024 KB
testcase_02 AC 38 ms
52,500 KB
testcase_03 AC 39 ms
53,684 KB
testcase_04 AC 39 ms
52,884 KB
testcase_05 AC 38 ms
52,880 KB
testcase_06 AC 39 ms
53,200 KB
testcase_07 AC 39 ms
53,208 KB
testcase_08 AC 39 ms
53,164 KB
testcase_09 AC 39 ms
54,200 KB
testcase_10 AC 39 ms
52,508 KB
testcase_11 AC 39 ms
53,008 KB
testcase_12 AC 38 ms
52,772 KB
testcase_13 AC 38 ms
53,376 KB
testcase_14 AC 38 ms
52,560 KB
testcase_15 AC 39 ms
53,208 KB
testcase_16 AC 39 ms
53,616 KB
testcase_17 AC 39 ms
52,632 KB
testcase_18 AC 39 ms
53,188 KB
testcase_19 AC 39 ms
52,516 KB
testcase_20 AC 39 ms
53,340 KB
testcase_21 AC 39 ms
53,764 KB
testcase_22 AC 40 ms
52,756 KB
testcase_23 AC 39 ms
54,100 KB
testcase_24 AC 39 ms
53,268 KB
testcase_25 AC 40 ms
53,160 KB
testcase_26 AC 39 ms
52,760 KB
testcase_27 AC 41 ms
54,044 KB
testcase_28 AC 40 ms
53,500 KB
testcase_29 AC 39 ms
52,948 KB
testcase_30 AC 39 ms
53,304 KB
testcase_31 AC 39 ms
53,532 KB
testcase_32 AC 39 ms
52,908 KB
testcase_33 AC 40 ms
53,264 KB
testcase_34 AC 40 ms
53,744 KB
testcase_35 AC 41 ms
52,760 KB
testcase_36 AC 39 ms
53,988 KB
testcase_37 AC 40 ms
54,016 KB
testcase_38 AC 39 ms
53,308 KB
testcase_39 AC 41 ms
52,812 KB
testcase_40 AC 40 ms
53,000 KB
testcase_41 AC 40 ms
52,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# A*B
def mul(a, b):
    c = [[0]*len(b[0]) for i in range(len(a))]
    for i in range(len(a)):
        for k in range(len(b)):
            for j in range(len(b[0])):
                c[i][j] = (c[i][j] + a[i][k]*b[k][j])%mod

    return c

#A**n
def pow(a, n):
    b = [[0]*len(a) for i in range(len(a))]
    for i in range(len(a)):
        b[i][i] = 1
    while n > 0:
        if n & 1 == 1:
            b = mul(a, b)
        a = mul(a, a)
        n = n>>1
    return b

a, b, n = map(int, input().split())
x0 = 0
x1 = 1
A = [[a, b], [1, 0]]
mod = 10**9+7
An = pow(A, n)
xn = An[1][0]*x1+An[1][1]*x0
print(xn%mod)
0