結果

問題 No.1049 Zero (Exhaust)
ユーザー kappybarkappybar
提出日時 2020-05-08 21:57:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 1,640 ms
コンパイル使用メモリ 172,416 KB
実行使用メモリ 57,920 KB
最終ジャッジ日時 2024-07-04 00:37:33
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 61 ms
40,544 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 51 ms
33,648 KB
testcase_06 AC 89 ms
57,856 KB
testcase_07 AC 13 ms
9,984 KB
testcase_08 AC 26 ms
19,200 KB
testcase_09 AC 63 ms
44,208 KB
testcase_10 AC 72 ms
47,856 KB
testcase_11 AC 72 ms
47,960 KB
testcase_12 AC 83 ms
55,036 KB
testcase_13 AC 20 ms
14,920 KB
testcase_14 AC 35 ms
26,496 KB
testcase_15 AC 61 ms
41,280 KB
testcase_16 AC 49 ms
33,920 KB
testcase_17 AC 53 ms
35,456 KB
testcase_18 AC 73 ms
48,768 KB
testcase_19 AC 60 ms
41,600 KB
testcase_20 AC 25 ms
18,876 KB
testcase_21 AC 65 ms
42,752 KB
testcase_22 AC 37 ms
25,360 KB
testcase_23 AC 87 ms
57,856 KB
testcase_24 AC 87 ms
57,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;

int main(){
    ll p ,k;
    cin >> p >> k;
    vector<vector<ll>> dp(k+1,vector<ll>(2,0));
    dp[0][0] = 1;
    for(int i=1;i<=k;i++){
        dp[i][0] = (((p+1)*dp[i-1][0])%MOD + (2*dp[i-1][1])%MOD)%MOD;
        dp[i][1] = (((p-1)*dp[i-1][0])%MOD + ((2*p-2)*dp[i-1][1])%MOD)%MOD;
    }
    cout << dp[k][0] << endl;
    return 0;
}
0