結果

問題 No.314 ケンケンパ
ユーザー eve__fuyukieve__fuyuki
提出日時 2018-03-13 18:17:57
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 430 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 54,368 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 02:07:58
合計ジャッジ時間 1,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 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 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
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 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main(){
    int N;
    long long ans;
    int dp[100000][3];
    cin >> N;
    dp[0][0] = 0;
    dp[0][1] = 1;
    dp[0][2] = 0;
    for(int i=1;i<N;i++){
        dp[i][0] = (dp[i-1][1]+dp[i-1][2])%1000000007;
        dp[i][1] = dp[i-1][0];
        dp[i][2] = dp[i-1][1];
    }
    ans = dp[N-1][0]+dp[N-1][1]+dp[N-1][2];
    ans %= 1000000007;
    cout << ans << endl;
    return 0;
}
0