結果

問題 No.1049 Zero (Exhaust)
コンテスト
ユーザー totori_nyaa
提出日時 2020-05-08 22:37:28
言語 C++14
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 601 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,144 ms
コンパイル使用メモリ 180,192 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2026-03-25 09:00:01
合計ジャッジ時間 2,103 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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