結果

問題 No.1049 Zero (Exhaust)
ユーザー kohei2019kohei2019
提出日時 2022-07-14 00:42:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 148,584 KB
最終ジャッジ日時 2024-06-25 06:00:22
合計ジャッジ時間 4,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 132 ms
122,608 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 129 ms
121,828 KB
testcase_06 AC 179 ms
148,584 KB
testcase_07 AC 49 ms
69,888 KB
testcase_08 AC 86 ms
95,360 KB
testcase_09 AC 137 ms
123,180 KB
testcase_10 AC 171 ms
147,072 KB
testcase_11 AC 168 ms
147,100 KB
testcase_12 AC 174 ms
148,140 KB
testcase_13 AC 82 ms
94,976 KB
testcase_14 AC 88 ms
96,476 KB
testcase_15 AC 134 ms
122,708 KB
testcase_16 AC 131 ms
121,676 KB
testcase_17 AC 128 ms
122,088 KB
testcase_18 AC 175 ms
147,328 KB
testcase_19 AC 131 ms
122,776 KB
testcase_20 AC 84 ms
95,628 KB
testcase_21 AC 134 ms
123,000 KB
testcase_22 AC 90 ms
96,660 KB
testcase_23 AC 181 ms
148,352 KB
testcase_24 AC 180 ms
148,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,K = map(int,input().split())
dp = [[0,0] for i in range(K+1)]
mod = 10**9+7
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[K][0])
0