結果

問題 No.1049 Zero (Exhaust)
ユーザー 👑 CleyLCleyL
提出日時 2023-03-24 10:25:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 69,836 KB
実行使用メモリ 19,048 KB
最終ジャッジ日時 2024-09-18 15:57:48
合計ジャッジ時間 1,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 11 ms
15,292 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 9 ms
12,968 KB
testcase_06 AC 13 ms
19,036 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 6 ms
8,412 KB
testcase_09 AC 10 ms
15,692 KB
testcase_10 AC 12 ms
17,104 KB
testcase_11 AC 11 ms
16,952 KB
testcase_12 AC 14 ms
18,088 KB
testcase_13 AC 5 ms
7,344 KB
testcase_14 AC 8 ms
11,048 KB
testcase_15 AC 10 ms
15,188 KB
testcase_16 AC 10 ms
13,076 KB
testcase_17 AC 9 ms
14,616 KB
testcase_18 AC 11 ms
16,600 KB
testcase_19 AC 9 ms
14,528 KB
testcase_20 AC 5 ms
9,188 KB
testcase_21 AC 10 ms
14,916 KB
testcase_22 AC 7 ms
11,120 KB
testcase_23 AC 14 ms
18,948 KB
testcase_24 AC 14 ms
19,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
const long long MOD = 1000000007;

long long dp[1000010][2];

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