結果

問題 No.314 ケンケンパ
ユーザー mannshi222mannshi222
提出日時 2022-04-29 15:55:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 67,996 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 22:17:27
合計ジャッジ時間 1,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>


using namespace std;

#define MOD (1000000000+7)

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

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

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

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

	return 0;
}
0