結果

問題 No.891 隣接3項間の漸化式
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-07 15:21:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 976 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 84,692 KB
最終ジャッジ日時 2024-07-06 20:31:18
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
60,336 KB
testcase_01 AC 30 ms
53,464 KB
testcase_02 AC 31 ms
53,604 KB
testcase_03 AC 31 ms
53,508 KB
testcase_04 AC 30 ms
52,344 KB
testcase_05 AC 30 ms
52,492 KB
testcase_06 AC 31 ms
52,488 KB
testcase_07 AC 29 ms
52,860 KB
testcase_08 AC 30 ms
52,928 KB
testcase_09 AC 31 ms
53,948 KB
testcase_10 AC 31 ms
52,196 KB
testcase_11 AC 32 ms
52,748 KB
testcase_12 AC 32 ms
52,952 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,n = map(int,input().split())
mod = 10**9+7

def calc(x,y):
    ans = [[0]*2 for i in range(2)]
    for i in range(2):
        for j in range(2):
            for k in range(2):
                ans[i][j] += x[i][k]*y[k][j]
                ans[i][j] %= mod

    return ans


A = [[a,b],[1,0]]
base = [[1,0],[0,1]]
n -= 1
while n:
    if n&1:
        base = calc(A,base)
    A = calc(A,A)
    n //= 2

print(base[0][0])
0