結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | alexara1123 |
提出日時 | 2019-09-21 15:14:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,586 ms / 2,000 ms |
コード長 | 717 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 82,308 KB |
実行使用メモリ | 78,612 KB |
最終ジャッジ日時 | 2024-09-18 23:17:43 |
合計ジャッジ時間 | 8,391 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,980 KB |
testcase_01 | AC | 45 ms
59,320 KB |
testcase_02 | AC | 59 ms
65,344 KB |
testcase_03 | AC | 96 ms
75,880 KB |
testcase_04 | AC | 643 ms
77,788 KB |
testcase_05 | AC | 712 ms
77,036 KB |
testcase_06 | AC | 888 ms
77,812 KB |
testcase_07 | AC | 952 ms
77,640 KB |
testcase_08 | AC | 1,065 ms
77,860 KB |
testcase_09 | AC | 1,586 ms
78,280 KB |
testcase_10 | AC | 1,532 ms
78,612 KB |
ソースコード
def mul(a, b): c = [[0]*len(b[0]) for i in range(len(a))] for i in range(len(a)): for k in range(len(b)): for j in range(len(b[0])): c[i][j] = (c[i][j]+a[i][k]*b[k][j]) % 17 return c def pow(a, n): #単位行列 b = [[0] * len(a) for i in range(len(a))] for i in range(len(a)): b[i][i] = 1 while n > 0: if n & 1 == 1: b = mul(a, b) a = mul(a, a) n = n >> 1 return b def main(): q = int(input()) a = [[1, 1, 1, 1], [1, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0]] for i in range(q): n = int(input()) an = pow(a, n) print(an[3][3]) if __name__ == '__main__': main()