結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー keisuke6keisuke6
提出日時 2022-07-12 17:17:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 2,686 ms
コンパイル使用メモリ 246,648 KB
実行使用メモリ 50,240 KB
最終ジャッジ日時 2024-06-23 15:11:05
合計ジャッジ時間 4,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
50,084 KB
testcase_01 AC 103 ms
50,096 KB
testcase_02 AC 101 ms
50,156 KB
testcase_03 AC 103 ms
50,228 KB
testcase_04 AC 99 ms
50,084 KB
testcase_05 AC 102 ms
50,032 KB
testcase_06 AC 105 ms
50,032 KB
testcase_07 AC 105 ms
50,060 KB
testcase_08 AC 107 ms
50,108 KB
testcase_09 AC 103 ms
50,240 KB
testcase_10 AC 99 ms
50,080 KB
testcase_11 AC 100 ms
50,140 KB
testcase_12 AC 97 ms
50,116 KB
testcase_13 AC 100 ms
50,232 KB
testcase_14 AC 102 ms
50,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int N,M;
  cin>>N>>M;
  vector<int> S(6000000);
  S[0] = 0;
  S[1] = 1;
  for(int i=2;i<S.size();i++){
      S[i] = S[i-1]+S[i-2];
      S[i] %= M;
  } 
  cout<<S[N-1]<<endl;
}
0