結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー _EnumHack_EnumHack
提出日時 2017-06-10 01:24:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 80,728 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 04:39:09
合計ジャッジ時間 2,106 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <cmath>
#include <iostream>
using namespace std;
auto fib_mod(size_t n, size_t m) {
    size_t first = 0, second = 1, result = 1;
    for (size_t i = 2; i <= n; i++,first = second,second = result) {
        result = (first + second)%m;
    }
    return result;
}

int main(){
    size_t n,m;
    cin >> n >> m;
    cout << fib_mod(n-1,m) << '\n';
}
0