結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー NarumisakakiosNarumisakakios
提出日時 2021-07-14 05:00:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 1,500 ms
コンパイル使用メモリ 169,848 KB
実行使用メモリ 42,336 KB
最終ジャッジ日時 2024-07-03 02:40:19
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 40 ms
11,008 KB
testcase_11 AC 179 ms
42,240 KB
testcase_12 AC 171 ms
42,336 KB
testcase_13 AC 173 ms
42,216 KB
testcase_14 AC 174 ms
42,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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