結果

問題 No.1049 Zero (Exhaust)
ユーザー AEnAEn
提出日時 2022-05-19 14:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 148,784 KB
最終ジャッジ日時 2024-09-17 20:56:25
合計ジャッジ時間 4,251 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,900 KB
testcase_01 AC 37 ms
52,544 KB
testcase_02 AC 37 ms
53,088 KB
testcase_03 AC 140 ms
122,828 KB
testcase_04 AC 38 ms
53,484 KB
testcase_05 AC 132 ms
122,004 KB
testcase_06 AC 184 ms
148,628 KB
testcase_07 AC 51 ms
71,792 KB
testcase_08 AC 90 ms
95,796 KB
testcase_09 AC 144 ms
123,260 KB
testcase_10 AC 179 ms
147,168 KB
testcase_11 AC 175 ms
147,228 KB
testcase_12 AC 179 ms
148,144 KB
testcase_13 AC 83 ms
95,056 KB
testcase_14 AC 92 ms
96,940 KB
testcase_15 AC 138 ms
122,984 KB
testcase_16 AC 130 ms
121,732 KB
testcase_17 AC 133 ms
122,156 KB
testcase_18 AC 175 ms
147,268 KB
testcase_19 AC 136 ms
122,824 KB
testcase_20 AC 87 ms
95,544 KB
testcase_21 AC 139 ms
123,096 KB
testcase_22 AC 93 ms
96,568 KB
testcase_23 AC 183 ms
148,640 KB
testcase_24 AC 182 ms
148,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P, K = map(int, input().split())
mod = 10**9+7
# dp:K回目の処理後にN=0 or N != 0
dp = [[0]*2 for _ in range(K+1)]
dp[0][0] = 1
for i in range(1, K+1):
    dp[i][1] = dp[i-1][1]*(2*P-2) + dp[i-1][0]*(P-1)
    dp[i][0] = dp[i-1][1]*2 + dp[i-1][0]*(P+1)
    dp[i][0] %= mod
    dp[i][1] %= mod
print(dp[-1][0])
0