結果

問題 No.1049 Zero (Exhaust)
ユーザー totori_nyaatotori_nyaa
提出日時 2020-05-08 22:37:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 1,228 ms
コンパイル使用メモリ 164,484 KB
実行使用メモリ 11,192 KB
最終ジャッジ日時 2023-09-17 03:12:57
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 9 ms
8,680 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 7 ms
7,856 KB
testcase_06 AC 12 ms
11,184 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 4 ms
5,828 KB
testcase_09 AC 9 ms
9,344 KB
testcase_10 AC 10 ms
9,712 KB
testcase_11 AC 9 ms
9,784 KB
testcase_12 AC 11 ms
10,864 KB
testcase_13 AC 4 ms
5,224 KB
testcase_14 AC 6 ms
6,736 KB
testcase_15 AC 9 ms
9,004 KB
testcase_16 AC 8 ms
7,844 KB
testcase_17 AC 8 ms
8,008 KB
testcase_18 AC 10 ms
9,920 KB
testcase_19 AC 9 ms
8,888 KB
testcase_20 AC 5 ms
5,616 KB
testcase_21 AC 9 ms
9,032 KB
testcase_22 AC 5 ms
6,728 KB
testcase_23 AC 12 ms
11,192 KB
testcase_24 AC 13 ms
11,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h> 
using namespace std;
typedef long long ll;
template<typename T1,typename T2> bool chmin(T1 &a,T2 b){if(a<=b)return 0; a=b; return 1;}
template<typename T1,typename T2> bool chmax(T1 &a,T2 b){if(a>=b)return 0; a=b; return 1;}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(20);

    ll mod = 1e9+7;
    ll p,k;
    cin>>p>>k;
    ll dp[k+1]={};
    dp[0]=1;
    ll now = 1;
    for(int i=0;i<k;i++){
        dp[i+1] = ((dp[i]*(p-1))%mod + now*2)%mod;
        now *= p*2;
        now %= mod;
    }
    cout << dp[k] << endl;
}
0