結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | outline |
提出日時 | 2020-07-14 16:06:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,129 bytes |
コンパイル時間 | 839 ms |
コンパイル使用メモリ | 107,380 KB |
実行使用メモリ | 23,028 KB |
最終ジャッジ日時 | 2024-11-17 15:27:53 |
合計ジャッジ時間 | 1,780 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 4 ms
5,248 KB |
testcase_10 | AC | 19 ms
7,552 KB |
testcase_11 | WA | - |
testcase_12 | AC | 83 ms
22,912 KB |
testcase_13 | WA | - |
testcase_14 | AC | 81 ms
22,912 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <complex> using namespace std; using ll = long long; using ull = uint64_t; using P = pair<int, int>; constexpr double EPS = 1e-9; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } int F[5000005]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, M; cin >> N >> M; F[0] = 0, F[1] = 1; for(int i = 2; i < N; ++i){ F[i] = (ll)(F[i - 1] + F[i - 2]) % M; } cout << F[N - 1] << endl; }