結果

問題 No.1811 EQUIV Ten
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-18 14:47:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 5,193 ms
コンパイル使用メモリ 311,160 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-05-05 20:00:37
合計ジャッジ時間 6,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 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 2 ms
5,376 KB
testcase_11 AC 33 ms
14,976 KB
testcase_12 AC 37 ms
15,872 KB
testcase_13 AC 39 ms
16,896 KB
testcase_14 AC 41 ms
17,408 KB
testcase_15 AC 40 ms
17,408 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 15 ms
7,936 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 12 ms
7,168 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 34 ms
14,720 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 32 ms
13,952 KB
testcase_35 AC 12 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  int b=1<<3;
  vc dp(n+1,vc<mint>(b,0)); dp[0][0]=1;
  mint ans=0;
  rep(z,n){
    rep(i,b)rep(j,2){
      int next=(i<<1)|j;
      if(next==10){
        ans+=dp[z][i]*mint(2).pow(n-z-1);
        continue;
      }
      next&=b-1;
      dp[z+1][next]+=dp[z][i];
    }
  }
  cout<<ans.val();
}
0