結果

問題 No.1811 EQUIV Ten
ユーザー hiro71687khiro71687k
提出日時 2024-11-16 01:11:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 756 bytes
コンパイル時間 4,673 ms
コンパイル使用メモリ 263,792 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-11-16 01:11:57
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 RE -
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 26 ms
14,992 KB
testcase_12 AC 28 ms
15,912 KB
testcase_13 AC 31 ms
17,152 KB
testcase_14 AC 31 ms
17,280 KB
testcase_15 AC 34 ms
17,280 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 12 ms
8,064 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 11 ms
7,040 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 26 ms
14,592 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 4 ms
5,248 KB
testcase_34 AC 25 ms
13,952 KB
testcase_35 AC 10 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=1000000007;
ll inf=30000000000000000;//10^17
int main(){
    ll n;
    cin >> n;
    vector<vector<ll>>dp(n,vector<ll>(5,0));
    dp[0][0]=1;
    dp[0][1]=1;
    for (ll i = 1; i < n; i++)
    {
        dp[i][0]+=dp[i-1][0];
        dp[i][0]+=dp[i-1][2];
        dp[i][1]+=dp[i-1][0];
        dp[i][1]+=dp[i-1][1];
        dp[i][1]+=dp[i-1][3];
        dp[i][2]+=dp[i-1][1];
        dp[i][3]+=dp[i-1][2];
        dp[i][4]+=dp[i-1][3];
        dp[i][4]+=dp[i-1][4]*2;
        for (ll j = 0; j <=4; j++)
        {
            dp[i][j]%=mod;
        }
    }
    cout << dp[n-1][4] << endl;
}
0