結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー Takuto AndoTakuto Ando
提出日時 2024-09-02 16:44:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 1,343 bytes
コンパイル時間 990 ms
コンパイル使用メモリ 102,240 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-02 16:44:33
合計ジャッジ時間 2,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <iomanip>
#include <string>
#include <vector>
#include <array>
#include <bitset>
#include <algorithm>
#include <limits>
#include <cmath>
#include <queue>
#include <numeric>
#include <tuple>
#include <stack>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <optional>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
using pint = pair<int, int>;
constexpr double PI = 3.141592653589793;
constexpr ll MOD = 1e9 + 7;
constexpr ll mod = 998244353;
constexpr ll INF = 1LL << 60;
const vector<int> dy = { 0, 1, 0, -1 };
const vector<int> dx = { 1, 0, -1, 0 };
const vector<int> DY = { 0, 1, 1, 1, 0, -1, -1, -1 };
const vector<int> DX = { 1, 1, 0, -1, -1, -1, 0, 1 };
#define vec2d(T, name, n, m, ini) vector<vector<T>> name(n, vector<T>(m, ini))
#define vec3d(T, name, n, m, l, ini) vector<vector<vector<T>>> name(n, vector<vector<T>>(m, vector<T>(l, ini)))
#define REP(i, e) rep(i, 0, e)
#define rep(i, s, e) for (ll i = s; i < (e); ++i)
#define rrep(i, s, e) for (ll i = s; i >= (e); --i)
#define all(x) (x).begin(), (x).end()

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);

	ll n, m;
	cin >> n >> m;
	ll f1 = 0, f2 = 1;
	rep(i, 2, n) {
		ll tmp = (f1 + f2) % m;
		f1 = f2;
		f2 = tmp;
	}
	cout << f2 << "\n";
	return 0;
}
0