結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー chacoder1chacoder1
提出日時 2021-01-31 10:59:36
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 191,300 KB
最終ジャッジ日時 2025-01-18 10:13:56
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 9 ms
8,960 KB
testcase_10 AC 71 ms
58,240 KB
testcase_11 AC 355 ms
276,736 KB
testcase_12 AC 369 ms
276,992 KB
testcase_13 AC 374 ms
276,864 KB
testcase_14 AC 388 ms
276,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
ll n,m;
ll res[5000010];

ll fiv(ll x,ll y){
  if(res[x] != 0) return res[x];
  if(x==1) return 0;
  if(x==2) return 1;
  res[x]=(fiv(x-1,y)+fiv(x-2,y))%y;
  return res[x];
}

int main(){
  ll n,m;
  cin>>n>>m;
  cout<<fiv(n,m)<<endl;
  return 0;
}


0