結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | aru_creator |
提出日時 | 2018-11-22 20:29:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 391 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 49,960 KB |
最終ジャッジ日時 | 2024-06-06 23:01:06 |
合計ジャッジ時間 | 10,876 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 506 ms
49,960 KB |
testcase_01 | AC | 502 ms
44,072 KB |
testcase_02 | AC | 498 ms
44,200 KB |
testcase_03 | AC | 494 ms
43,948 KB |
testcase_04 | AC | 503 ms
43,816 KB |
testcase_05 | AC | 504 ms
44,208 KB |
testcase_06 | WA | - |
testcase_07 | AC | 508 ms
43,952 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
import numpy as np def calFibonatti(N): if N<=3: if N == 1: return 0 return 1 N = N - 3 A = np.zeros((2,2),dtype=int) A[0][0]=1 A[0][1]=1 A[1][0]=1 A[1][1]=0 result = np.copy(A) for i in range(N): result = result.dot(A) return result[0][0] N,M = map(int, input().split()) print(calFibonatti(N)%M)