結果
| 問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-04-09 16:18:58 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 76 ms / 2,000 ms | 
| コード長 | 371 bytes | 
| コンパイル時間 | 739 ms | 
| コンパイル使用メモリ | 65,616 KB | 
| 最終ジャッジ日時 | 2025-01-09 15:28:03 | 
| ジャッジサーバーID (参考情報) | judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 12 | 
ソースコード
#include <iostream>
using lint = long long;
void solve() {
    int n;
    lint m;
    std::cin >> n >> m;
    lint a = 0, b = 1;
    --n;
    while (n--) {
        lint c = (a + b) % m;
        a = b;
        b = c;
    }
    std::cout << a << std::endl;
}
int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    solve();
    return 0;
}
            
            
            
        