結果

問題 No.314 ケンケンパ
ユーザー bcat_is_so_cutebcat_is_so_cute
提出日時 2017-10-06 14:00:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 54,488 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-04-28 10:21:47
合計ジャッジ時間 1,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

long long dp[1000001][3] = {0};

using namespace std;

int main(){
  int N;

  cin >> N;

  dp[0][0] = 1;

  for(int i = 1;i < N;i++){
    dp[i][0] = dp[i-1][2];
    dp[i][1] = dp[i-1][0];
    dp[i][2] = dp[i-1][0] + dp[i-1][1];
  }

  cout << (dp[N-1][0] + dp[N-1][1] + dp[N-1][2]) % (long long)(1e9 + 7) << endl;

  return 0;
}
0