結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | hiroHoshii |
提出日時 | 2020-06-10 21:42:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 73 ms / 2,000 ms |
コード長 | 598 bytes |
コンパイル時間 | 403 ms |
コンパイル使用メモリ | 81,808 KB |
実行使用メモリ | 68,352 KB |
最終ジャッジ日時 | 2024-06-23 16:42:37 |
合計ジャッジ時間 | 2,393 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
67,840 KB |
testcase_01 | AC | 66 ms
68,224 KB |
testcase_02 | AC | 73 ms
67,840 KB |
testcase_03 | AC | 67 ms
68,224 KB |
testcase_04 | AC | 67 ms
68,224 KB |
testcase_05 | AC | 67 ms
68,096 KB |
testcase_06 | AC | 69 ms
68,096 KB |
testcase_07 | AC | 61 ms
68,044 KB |
testcase_08 | AC | 63 ms
68,352 KB |
testcase_09 | AC | 65 ms
68,224 KB |
testcase_10 | AC | 63 ms
68,224 KB |
testcase_11 | AC | 62 ms
68,352 KB |
testcase_12 | AC | 63 ms
67,968 KB |
testcase_13 | AC | 64 ms
68,224 KB |
testcase_14 | AC | 65 ms
68,216 KB |
ソースコード
import sys,queue,math,copy,itertools,bisect,collections,heapq def main(): LI = lambda : [int(x) for x in sys.stdin.readline().split()] N,M = LI() x = [[1,1],[1,0]] y = [[1,0],[0,1]] n = N - 3 def mul(a, b): z = [[0,0],[0,0]] for i in range(2): for j in range(2): for k in range(2): z[i][j] = (z[i][j] + a[i][k] * b[k][j]) % M return z while n > 0: if n % 2: y = mul(x,y) x = mul(x, x) n //= 2 print(sum(y[0]) % M) if __name__ == '__main__': main()