結果

問題 No.1049 Zero (Exhaust)
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-03 00:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 148,480 KB
最終ジャッジ日時 2024-10-03 00:09:36
合計ジャッジ時間 4,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 147 ms
122,880 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 144 ms
121,472 KB
testcase_06 AC 196 ms
148,480 KB
testcase_07 AC 60 ms
69,632 KB
testcase_08 AC 98 ms
95,488 KB
testcase_09 AC 160 ms
122,880 KB
testcase_10 AC 187 ms
146,944 KB
testcase_11 AC 188 ms
146,816 KB
testcase_12 AC 193 ms
147,968 KB
testcase_13 AC 95 ms
95,104 KB
testcase_14 AC 104 ms
96,384 KB
testcase_15 AC 151 ms
122,496 KB
testcase_16 AC 144 ms
121,600 KB
testcase_17 AC 150 ms
121,856 KB
testcase_18 AC 188 ms
147,200 KB
testcase_19 AC 152 ms
122,752 KB
testcase_20 AC 100 ms
95,488 KB
testcase_21 AC 152 ms
123,008 KB
testcase_22 AC 104 ms
96,384 KB
testcase_23 AC 197 ms
148,224 KB
testcase_24 AC 205 ms
148,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P, K = map(int, input().split())
mod = 10**9 + 7

dp = [[0, 0] for _ in range(K+1)]
dp[0][0] = 1
for i in range(1, K+1):
    dp[i][0] = (dp[i-1][0]*(P+1) + dp[i-1][1]*2) %  mod
    dp[i][1] = (dp[i-1][0]*(P-1) + dp[i-1][1]*(2*P-2)) % mod

print(dp[-1][0])
0