結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー NoiriNoiri
提出日時 2019-02-27 17:44:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 163,108 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-05 09:23:46
合計ジャッジ時間 2,534 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;

int main(){
    ll n, m;
    cin >> n >> m;
    if(n == 1){
        cout << 0 << endl;
        return 0;
    }
    else if (n == 2){
        cout << 1 << endl;
        return 0;
    }

    int a = 0, b = 1, c = 0, tmp = 0;
    for(int i=3; i<=n; i++){
        c = a + b;
        a = b;
        b = c;
    }
    c %= m;
    cout << c << endl;
    return 0;
}
0