結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー umimelumimel
提出日時 2022-08-05 00:21:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,436 bytes
コンパイル時間 2,674 ms
コンパイル使用メモリ 172,988 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-12 22:33:57
合計ジャッジ時間 2,919 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll N_MAX = 2e5;

ll pow_mod(ll x, ll n, ll mod){
    ll ret = 1;
    while(n > 0){
        if(n & 1) ret = (ret*x)%mod;
        x = x*x%mod;
        n >>=1;
    }
    return ret;
}

vector<vector<ll>> mul(vector<vector<ll>> A, vector<vector<ll>> B, ll mod){
    vector<vector<ll>> C((ll)A.size(), vector<ll>((ll)B[0].size(), 0));
    for(ll i=0; i<(ll)A.size(); i++){
        for(ll k=0; k<(ll)B.size(); k++){
            for(ll j=0; j<(ll)B[0].size(); j++){
                C[i][j] = (C[i][j]+A[i][k]*B[k][j])%mod;
            }
        }
    }

    return C;
}

vector<vector<ll>> mat_pow_mod(vector<vector<ll>> A, ll n, ll mod){
    ll siz = (ll)A.size();
    vector<vector<ll>> B(siz, vector<ll>(siz, 0));
    rep(i, siz) B[i][i] = 1;
    while(n > 0){
        if(n & 1) B = mul(B, A, mod);
        A = mul(A, A, mod);
        n >>= 1;
    }

    return B;
}

int main(){
    ll n, m;
    cin >> n >> m;

    vector<vector<ll>> A(2, vector<ll>(2, 0));
    A[0][0] = 1;
    A[0][1] = 1;
    A[1][0] = 1;
    A = mat_pow_mod(A, n-1, m);
    cout << A[1][0] << endl;
}
0