結果

問題 No.658 テトラナッチ数列 Hard
ユーザー roarisroaris
提出日時 2020-07-25 23:58:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,237 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,900 KB
最終ジャッジ日時 2024-06-27 18:26:26
合計ジャッジ時間 7,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 50 ms
63,232 KB
testcase_03 AC 86 ms
76,288 KB
testcase_04 AC 525 ms
78,716 KB
testcase_05 AC 584 ms
78,944 KB
testcase_06 AC 711 ms
79,200 KB
testcase_07 AC 761 ms
79,900 KB
testcase_08 AC 863 ms
79,000 KB
testcase_09 AC 1,237 ms
79,452 KB
testcase_10 AC 1,229 ms
79,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def mat_mul(A, B):
    C = [[0]*len(B[0]) for _ in range(len(A))]
    
    for i in range(len(A)):
        for j in range(len(B[0])):
            for k in range(len(A[0])):
                C[i][j] += A[i][k]*B[k][j]
                C[i][j] %= MOD
    
    return C

def mat_pow(A, n):
    res = [[0]*len(A) for _ in range(len(A))]
    
    for i in range(len(A)):
        res[i][i] = 1
    
    while n>0:
        if n&1:
            res = mat_mul(res, A)
        
        n >>= 1
        A = mat_mul(A, A)
    
    return res
    
Q = int(input())
MOD = 17
A = [[1, 1, 1, 1], [1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0]]
x = [[1], [0], [0], [0]]

for _ in range(Q):
    n = int(input())
    
    if n<=3:
        print(0)
    else:
        print(mat_mul(mat_pow(A, n-4), x)[0][0])
0