結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー nohakai3nohakai3
提出日時 2022-08-02 11:24:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 98,772 KB
最終ジャッジ日時 2024-07-23 04:14:07
合計ジャッジ時間 2,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
92,604 KB
testcase_01 AC 52 ms
91,928 KB
testcase_02 AC 53 ms
91,804 KB
testcase_03 AC 52 ms
91,836 KB
testcase_04 AC 53 ms
91,772 KB
testcase_05 AC 50 ms
91,240 KB
testcase_06 AC 51 ms
92,036 KB
testcase_07 AC 51 ms
93,068 KB
testcase_08 AC 54 ms
98,260 KB
testcase_09 AC 55 ms
98,664 KB
testcase_10 AC 60 ms
98,184 KB
testcase_11 AC 86 ms
98,772 KB
testcase_12 AC 76 ms
97,672 KB
testcase_13 AC 88 ms
97,948 KB
testcase_14 AC 73 ms
97,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
dp=[0]*5010101
dp[1]=0
dp[2]=1
for i in range(3,n+1):
    dp[i]=(dp[i-1]+dp[i-2])%m


print(dp[n])
0