結果

問題 No.793 うし数列 2
ユーザー ああいいああいい
提出日時 2022-01-15 00:12:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 400 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-04-30 18:53:14
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,460 KB
testcase_01 AC 39 ms
53,456 KB
testcase_02 AC 39 ms
53,116 KB
testcase_03 AC 38 ms
52,500 KB
testcase_04 AC 38 ms
52,668 KB
testcase_05 AC 40 ms
53,612 KB
testcase_06 AC 40 ms
53,268 KB
testcase_07 AC 36 ms
53,064 KB
testcase_08 AC 38 ms
52,996 KB
testcase_09 AC 38 ms
53,380 KB
testcase_10 AC 39 ms
53,844 KB
testcase_11 AC 40 ms
53,256 KB
testcase_12 AC 38 ms
53,196 KB
testcase_13 AC 39 ms
53,316 KB
testcase_14 AC 36 ms
53,192 KB
testcase_15 AC 39 ms
53,452 KB
testcase_16 AC 40 ms
53,168 KB
testcase_17 AC 39 ms
54,672 KB
testcase_18 AC 39 ms
52,600 KB
testcase_19 AC 38 ms
53,224 KB
testcase_20 AC 39 ms
53,500 KB
testcase_21 AC 39 ms
53,736 KB
testcase_22 AC 38 ms
53,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = 10 ** 9 + 7

def seki(X,Y):
    l = [[0] * 2 for _ in range(2)]
    for i in range(2):
        for j in range(2):
            for k in range(2):
                l[i][j] = (l[i][j] + X[i][k] * Y[k][j])%P
    return l
    
A = [[10,3],[0,1]]
tmp = [[1,0],[0,1]]
while N:
    if N & 1:
        tmp = seki(tmp,A)
    A = seki(A,A)
    N >>= 1
ans = tmp[0][0] + tmp[0][1]
print(ans%P)
0