結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー chacoder1chacoder1
提出日時 2021-01-31 10:59:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 198,656 KB
実行使用メモリ 276,864 KB
最終ジャッジ日時 2024-06-28 20:11:08
合計ジャッジ時間 3,810 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 8 ms
8,960 KB
testcase_10 AC 63 ms
58,112 KB
testcase_11 AC 315 ms
276,736 KB
testcase_12 AC 316 ms
276,736 KB
testcase_13 AC 298 ms
276,736 KB
testcase_14 AC 297 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