結果

問題 No.657 テトラナッチ数列 Easy
ユーザー realDivineJKrealDivineJK
提出日時 2020-05-27 20:38:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 653 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 78,904 KB
最終ジャッジ日時 2024-10-13 03:47:18
合計ジャッジ時間 5,072 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,944 KB
testcase_01 AC 34 ms
52,812 KB
testcase_02 AC 37 ms
54,052 KB
testcase_03 AC 35 ms
53,744 KB
testcase_04 AC 41 ms
60,596 KB
testcase_05 AC 108 ms
76,944 KB
testcase_06 AC 35 ms
53,936 KB
testcase_07 AC 35 ms
53,160 KB
testcase_08 AC 46 ms
63,408 KB
testcase_09 AC 504 ms
78,164 KB
testcase_10 AC 481 ms
77,932 KB
testcase_11 AC 479 ms
78,508 KB
testcase_12 AC 544 ms
78,628 KB
testcase_13 AC 653 ms
78,904 KB
testcase_14 AC 626 ms
77,756 KB
testcase_15 AC 627 ms
78,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
mod = 17
def matprod(m1, m2, n, l, m):
    y = [[0 for _ in range(m)] for __ in range(n)]
    for i in range(n):
        for j in range(m):
            for k in range(l):
                y[i][j] += m1[i][k] * m2[k][j] % mod
                y[i][j] %= mod
    return y
    
def matpow(m1, n, m):
    y = [[i==j for j in range(n)] for i in range(n)]
    bas = [[m1[i][j] for j in range(n)] for i in range(n)]
    tmp = m
    while tmp != 0:
        if tmp % 2 == 1:
            y = matprod(y, bas, n, n, n)[:][:]
        bas = matprod(bas, bas, n, n, n)[:][:]
        tmp //= 2
    return y
vec = [0, 0, 0, 1]
for _ in range(Q):
    n = int(input())
    M = [
        [0, 1, 0, 0],
        [0, 0, 1, 0],
        [0, 0, 0, 1],
        [1, 1, 1, 1]
        ]
    m = matpow(M, 4, n-1)
    S = 0
    for i in range(4):
        S += m[0][i] * vec[i] % mod
        S %= mod
    print(S)
0