結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー e869120e869120
提出日時 2017-06-09 22:22:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 78,248 KB
実行使用メモリ 48,476 KB
最終ジャッジ日時 2024-09-22 14:37:45
合計ジャッジ時間 2,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
47,376 KB
testcase_01 AC 97 ms
46,752 KB
testcase_02 AC 97 ms
46,784 KB
testcase_03 AC 97 ms
46,676 KB
testcase_04 AC 98 ms
46,920 KB
testcase_05 AC 98 ms
48,476 KB
testcase_06 AC 97 ms
46,716 KB
testcase_07 AC 99 ms
47,856 KB
testcase_08 AC 97 ms
46,580 KB
testcase_09 AC 98 ms
47,740 KB
testcase_10 AC 98 ms
46,924 KB
testcase_11 AC 98 ms
46,504 KB
testcase_12 AC 98 ms
47,112 KB
testcase_13 AC 98 ms
47,344 KB
testcase_14 AC 98 ms
47,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
#include<queue>
#include<functional>
#include<cmath>
using namespace std;
long long dp[6000000], n, m;
int main() {
	cin >> n >> m;
	dp[1] = 0; dp[2] = 1;
	for (int i = 3; i < 5500000; i++)dp[i] = (dp[i - 1] + dp[i - 2]) % m;
	cout << dp[n] << endl;
	return 0;
}
0