結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | ayaoni |
提出日時 | 2020-12-18 20:43:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,169 bytes |
コンパイル時間 | 411 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 82,432 KB |
最終ジャッジ日時 | 2024-09-21 09:18:05 |
合計ジャッジ時間 | 14,590 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,472 KB |
testcase_01 | AC | 42 ms
52,352 KB |
testcase_02 | AC | 75 ms
73,600 KB |
testcase_03 | AC | 124 ms
77,184 KB |
testcase_04 | AC | 1,578 ms
80,896 KB |
testcase_05 | AC | 1,746 ms
81,408 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) def matrix_multiplication_mod(A,B,p): l = len(A) m = len(B) n = len(B[0]) C = [[0]*n for _ in range(l)] for i in range(l): for j in range(n): C[i][j] = sum((A[i][k]*B[k][j]) % p for k in range(m)) % p return C def matrix_power_mod(A,n,p): l = len(A) C = [[0] * l for _ in range(l)] for i in range(l): C[i][i] = 1 while n > 0: if n % 2 == 1: C = matrix_multiplication_mod(C,A,p) A = matrix_multiplication_mod(A,A,p) n >>= 1 return C A = [[1,1,1,1],[1,0,0,0],[0,1,0,0],[0,0,1,0]] for _ in range(I()): N = I() if N <= 3: print(0) continue print(matrix_power_mod(A,N-4,17)[0][0])