結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-02-28 14:48:36 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 1,000 ms |
| コード長 | 436 bytes |
| コンパイル時間 | 1,425 ms |
| コンパイル使用メモリ | 166,236 KB |
| 実行使用メモリ | 15,236 KB |
| 最終ジャッジ日時 | 2024-10-13 16:24:56 |
| 合計ジャッジ時間 | 2,227 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod=1e9+7;
int main(){
int n;cin >> n;
int dp[n+1][3];
memset(dp,0,sizeof(dp));
dp[0][0]=1;
for(int i=0;i<n;i++){
dp[i+1][0]+=(dp[i][1]+dp[i][2])%mod;
dp[i+1][1]+=dp[i][0];
dp[i+1][2]+=dp[i][1];
}
int ans=0;
for(int i=0;i<3;i++){
ans+=dp[n][i];
ans%=mod;
}
cout << ans << endl;
}