結果

問題 No.314 ケンケンパ
ユーザー kyabariakyabaria
提出日時 2018-09-11 16:39:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 477 bytes
コンパイル時間 1,222 ms
コンパイル使用メモリ 157,892 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-06-23 16:40:37
合計ジャッジ時間 1,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
26,368 KB
testcase_01 AC 2 ms
5,376 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 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 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 5 ms
5,632 KB
testcase_18 AC 16 ms
14,592 KB
testcase_19 AC 32 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef  long long ll;
#define INF 1000000000
using namespace std;
#define N 1000000
#define MOD 1000000007
ll dp[N+1][3]={0};
int main(void){
    int n;
    cin>>n;
    dp[1][1]=1;
    for(int i=2;i<=n;i++){
        dp[i][0]+=(dp[i-1][1]+dp[i-1][2]);
        dp[i][0]%=MOD;
        dp[i][1]+=dp[i-1][0];
        dp[i][1]%=MOD;
        dp[i][2]+=dp[i-1][1];
        dp[i][2]%=MOD;
    }
    ll sum=dp[n][0]+dp[n][1]+dp[n][2];
    cout<<sum%MOD<<endl;
}
0