結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | south37 |
提出日時 | 2020-05-03 17:28:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 2,843 bytes |
コンパイル時間 | 893 ms |
コンパイル使用メモリ | 101,528 KB |
実行使用メモリ | 42,284 KB |
最終ジャッジ日時 | 2024-06-13 00:36:21 |
合計ジャッジ時間 | 1,680 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 14 ms
11,060 KB |
testcase_11 | AC | 59 ms
42,136 KB |
testcase_12 | AC | 35 ms
42,252 KB |
testcase_13 | AC | 60 ms
42,284 KB |
testcase_14 | AC | 60 ms
42,200 KB |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cmath> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <unordered_map> #include <vector> #include <string.h> #include <set> using namespace std; #define COUT(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl template<class T> void printvec(const vector<T>& v) { for (auto x : v) { cout << x << " "; } cout << endl; } template<class T> void printtree(const vector< vector<T> >& tree) { for (long long i = 0; i < tree.size(); ++i) { cout << i + 1 << ": "; printvec(tree[i]); } } template<class T, class U> void printmap(const map<T, U>& mp) { for (auto x : mp) { cout << x.first << "=>" << x.second << endl; } } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } #define rep(i, n) for(ll i = 0; i < n; ++i) #define all(s) s.begin(), s.end() #define sz(x) (ll)(x).size() #define fr first #define sc second #define mp make_pair #define pb push_back #define eb emplace_back typedef long long ll; typedef unsigned long long ull; typedef pair<ll, ll> P; typedef tuple<ll, ll, ll> triple; typedef double D; typedef vector<ll> vl; typedef vector<P> vp; const ll INF = 1e9; ll MOD; // Mod int // cf. https://www.youtube.com/watch?v=1Z6ofKN03_Y struct mint { ll x; mint(ll x = 0) : x((x + MOD) % MOD) {} mint& operator+= (const mint a) { if ((x += a.x) >= MOD) x %= MOD; return *this; } mint operator+ (const mint a) const { mint res(*this); return res += a; } mint& operator-= (const mint a) { if ((x += MOD - a.x) >= MOD) x %= MOD; return *this; } mint operator- (const mint a) const { mint res(*this); return res -= a; } mint& operator*= (const mint a) { (x *= a.x) %= MOD; return *this; } mint operator* (const mint a) const { mint res(*this); return res *= a; } mint pow(ll t) const { if (!t) { return 1; } mint a = pow(t >> 1); a *= a; if (t & 1) a *= *this; return a; } // for prime mod mint inv() const { return pow(MOD-2); } mint& operator/= (const mint a) { return (*this) *= a.inv(); } mint operator/ (const mint a) const { mint res(*this); return res /= a; } }; istream& operator>>(istream& is, const mint& a) { return is >> a.x;} ostream& operator<<(ostream& os, const mint& a) { return os << a.x;} int main(int argc, char** argv) { cin.tie(NULL); cout.tie(NULL); ios_base::sync_with_stdio(false); //cout << setprecision(10) << fixed; ll n; cin >> n >> MOD; vector<mint> dp(n+1); dp[0] = 0; dp[1] = 1; rep(i,n-2) { dp[i+2] = dp[i+1] + dp[i]; } cout << dp[n-1] << endl; }