結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー f843nmfwisfeuwf843nmfwisfeuw
提出日時 2020-09-14 20:24:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 92,500 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 00:54:56
合計ジャッジ時間 1,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,948 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 32 ms
6,940 KB
testcase_11 AC 164 ms
6,940 KB
testcase_12 AC 160 ms
6,944 KB
testcase_13 AC 162 ms
6,940 KB
testcase_14 AC 158 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/iostream:39,
                 from main.cpp:1:
In member function 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long int) [with _CharT = char; _Traits = std::char_traits<char>]',
    inlined from 'int main()' at main.cpp:33:13:
/home/linuxbrew/.linuxbrew/Cellar/gcc@12/12.3.0/include/c++/12/ostream:167:25: warning: 'F3' may be used uninitialized [-Wmaybe-uninitialized]
  167 |       { return _M_insert(__n); }
      |                ~~~~~~~~~^~~~~
main.cpp: In function 'int main()':
main.cpp:26:10: note: 'F3' was declared here
   26 |     long F3;
      |          ^~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <iomanip>
#include <stack>
#include <algorithm>
#include <string>
#include <map>
#include <iterator>
#include <set>
#include <queue>
#include <bitset>
#include <cassert>

using namespace std;

int main() {


    long N, M;
    cin >> N >> M;

    long F1 = 0;
    long F2 = 1;
    long F3;
    for (int i = 3; i <= N; ++i) {
        F3 = ((F2 % M) + (F1 % M)) % M;
        F1 = F2;
        F2 = F3;
    }

    cout << F3 << endl;

    return 0;

}
0