結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー nohakai3nohakai3
提出日時 2022-08-02 11:24:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 127 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 206,848 KB
最終ジャッジ日時 2024-07-23 04:14:04
合計ジャッジ時間 11,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
49,664 KB
testcase_01 AC 71 ms
49,652 KB
testcase_02 AC 76 ms
49,720 KB
testcase_03 AC 77 ms
49,664 KB
testcase_04 AC 72 ms
49,664 KB
testcase_05 AC 70 ms
49,768 KB
testcase_06 AC 73 ms
49,644 KB
testcase_07 AC 72 ms
49,708 KB
testcase_08 AC 77 ms
50,188 KB
testcase_09 AC 113 ms
52,944 KB
testcase_10 AC 468 ms
81,024 KB
testcase_11 TLE -
testcase_12 AC 1,589 ms
49,536 KB
testcase_13 TLE -
testcase_14 TLE -
権限があれば一括ダウンロードができます

ソースコード

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