結果

問題 No.1049 Zero (Exhaust)
ユーザー Yagnik sakhiyaYagnik sakhiya
提出日時 2020-05-09 22:10:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 1,459 ms
コンパイル使用メモリ 167,364 KB
実行使用メモリ 11,160 KB
最終ジャッジ日時 2024-07-06 05:02:51
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 9 ms
8,684 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 8 ms
7,748 KB
testcase_06 AC 12 ms
11,112 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 9 ms
9,288 KB
testcase_10 AC 10 ms
10,000 KB
testcase_11 AC 10 ms
9,836 KB
testcase_12 AC 12 ms
10,840 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 9 ms
8,864 KB
testcase_16 AC 8 ms
7,712 KB
testcase_17 AC 7 ms
8,016 KB
testcase_18 AC 10 ms
10,032 KB
testcase_19 AC 9 ms
8,776 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 9 ms
9,020 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 12 ms
11,128 KB
testcase_24 AC 12 ms
11,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Sakhiya07 - Yagnik Sakhiya
 
#include <bits/stdc++.h>
using namespace std;
 
#define ll long long int
#define ld long double
#define ff first
#define ss second
#define pb push_back
#define all(x) x.begin(),x.end()
#define pll pair<int,int>
 
#define mp make_pair
#define bp __builtin_popcountll
#define MOD  1000000007
const int N = 1000005;

void solve()
{    
     ll n,p;
     cin >> p >> n;
     ll dp[n+1];
     dp[0] = 1;
     ll crt = 1;
     ll pre = 0;
     for(ll i=1;i<=n;i++)
     {
          dp[i] = (dp[i-1] * (p+1))%MOD;
          dp[i] = (dp[i] + (2 * pre))%MOD;
          crt = (crt * 2 * p)%MOD;
          pre = (crt - dp[i] + MOD)%MOD;
     }
     cout<<dp[n];
}

int main()
{
     int t = 1;
     //  cin >> t;
     while(t--)
     {    
          solve();
     }
}
0