結果

問題 No.658 テトラナッチ数列 Hard
ユーザー KazunKazun
提出日時 2020-08-08 02:15:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,013 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 78,728 KB
最終ジャッジ日時 2024-09-25 04:36:54
合計ジャッジ時間 5,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,200 KB
testcase_01 AC 46 ms
60,812 KB
testcase_02 AC 53 ms
65,340 KB
testcase_03 AC 89 ms
76,680 KB
testcase_04 AC 463 ms
78,644 KB
testcase_05 AC 514 ms
78,116 KB
testcase_06 AC 612 ms
78,244 KB
testcase_07 AC 643 ms
78,428 KB
testcase_08 AC 736 ms
78,468 KB
testcase_09 AC 1,008 ms
78,728 KB
testcase_10 AC 1,013 ms
78,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
#===========================================
def m(A,B):
    C=[[0]*4 for i in range(4)]
    for i in range(4):
        for j in range(4):
            X=0
            for k in range(4):
                X+=A[i][k]*B[k][j]
                X%=17
            C[i][j]=X
    return C
#===========================================
Q=int(input())
X=[0]*Q

M=[[1,1,1,1],[1,0,0,0],[0,1,0,0],[0,0,1,0]]


for i in range(Q):
    N=int(input())
    A=[[1*(i==j) for i in range(4)] for j in range(4)]
    B=deepcopy(M)

    while N>0:
        if N%2:
            A=m(A,B)
        N>>=1
        B=m(B,B)
    X[i]=A[-1][-1]
print("\n".join(map(str,X)))
0