結果

問題 No.314 ケンケンパ
ユーザー mannshi222mannshi222
提出日時 2022-04-29 15:57:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 459 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 67,840 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 22:17:39
合計ジャッジ時間 1,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:32:24: warning: 'aS' may be used uninitialized [-Wmaybe-uninitialized]
   32 |         cout << (aS%MOD+bK1%MOD+bK2%MOD)%MOD << endl;
      |                        ^
main.cpp:14:23: note: 'aS' was declared here
   14 |         long long int aS, aK1, aK2;
      |                       ^~

ソースコード

diff #

#include <iostream>


using namespace std;

#define MOD (1000000000+7)

int main()
{
	int N;
	cin >> N;

	long long int bS, bK1, bK2;
	long long int aS, aK1, aK2;
	bS = 1;
	bK1 = 0;
	bK2 = 0;

	for( int i = 1; i <= N; i++ ) {
		aS  = bK1%MOD + bK2%MOD;
		aK1 = bS ;
		aK2 = bK1;
		aS  = aS%MOD;
		aK1 = aK1%MOD;
		aK2 = aK2%MOD;
		bS = aS;
		bK1 = aK1;
		bK2 = aK2;
		// cout << "hoge" << endl;
	}

	cout << (aS%MOD+bK1%MOD+bK2%MOD)%MOD << endl;

	return 0;
}
0