結果

問題 No.1049 Zero (Exhaust)
ユーザー yuji9511yuji9511
提出日時 2020-05-08 22:11:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 1,524 ms
コンパイル使用メモリ 167,004 KB
実行使用メモリ 19,020 KB
最終ジャッジ日時 2024-07-04 00:47:58
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 11 ms
14,524 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 9 ms
12,156 KB
testcase_06 AC 14 ms
18,968 KB
testcase_07 AC 4 ms
7,032 KB
testcase_08 AC 7 ms
8,572 KB
testcase_09 AC 11 ms
15,840 KB
testcase_10 AC 12 ms
16,420 KB
testcase_11 AC 11 ms
16,272 KB
testcase_12 AC 13 ms
18,292 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 7 ms
10,464 KB
testcase_15 AC 12 ms
15,144 KB
testcase_16 AC 9 ms
12,328 KB
testcase_17 AC 9 ms
13,064 KB
testcase_18 AC 12 ms
16,796 KB
testcase_19 AC 11 ms
16,008 KB
testcase_20 AC 5 ms
9,576 KB
testcase_21 AC 10 ms
14,728 KB
testcase_22 AC 6 ms
10,624 KB
testcase_23 AC 15 ms
18,976 KB
testcase_24 AC 15 ms
19,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*** author: yuji9511 ***/
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using lpair = pair<ll, ll>;
const ll MOD = 1e9+7;
const ll INF = 1e18;
#define rep(i,m,n) for(ll i=(m);i<(n);i++)
#define rrep(i,m,n) for(ll i=(m);i>=(n);i--)
#define printa(x,n) for(ll i=0;i<n;i++){cout<<(x[i])<<" \n"[i==n-1];};
void print() {}
template <class H,class... T>
void print(H&& h, T&&... t){cout<<h<<" \n"[sizeof...(t)==0];print(forward<T>(t)...);}
ll dp[1000010][2] = {};

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll P,K;
    cin >> P >> K;
    dp[0][0] = 1;
    rep(i,0,K){
        dp[i+1][0] = dp[i][0] * (P+1) % MOD + dp[i][1] * 2 * (P-1);
        dp[i+1][0] %= MOD;
        dp[i+1][1] = dp[i][0] + (P-1) * 2 * dp[i][1];
        dp[i+1][1] %= MOD;
    }
    ll ans = dp[K][0];
    print(ans);
}
0