結果

問題 No.1049 Zero (Exhaust)
ユーザー googol_S0googol_S0
提出日時 2020-05-08 22:52:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 173,152 KB
最終ジャッジ日時 2024-07-04 01:06:09
合計ジャッジ時間 4,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,012 KB
testcase_01 AC 35 ms
52,068 KB
testcase_02 AC 35 ms
53,180 KB
testcase_03 AC 151 ms
137,396 KB
testcase_04 AC 36 ms
52,336 KB
testcase_05 AC 143 ms
137,120 KB
testcase_06 AC 207 ms
172,904 KB
testcase_07 AC 54 ms
79,668 KB
testcase_08 AC 90 ms
103,324 KB
testcase_09 AC 153 ms
142,588 KB
testcase_10 AC 195 ms
164,008 KB
testcase_11 AC 193 ms
164,196 KB
testcase_12 AC 198 ms
164,408 KB
testcase_13 AC 84 ms
102,952 KB
testcase_14 AC 99 ms
110,052 KB
testcase_15 AC 157 ms
142,448 KB
testcase_16 AC 149 ms
137,064 KB
testcase_17 AC 145 ms
137,384 KB
testcase_18 AC 192 ms
164,124 KB
testcase_19 AC 153 ms
142,524 KB
testcase_20 AC 91 ms
102,900 KB
testcase_21 AC 153 ms
142,384 KB
testcase_22 AC 101 ms
110,056 KB
testcase_23 AC 208 ms
172,956 KB
testcase_24 AC 199 ms
173,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,K=map(int,input().split())
mod=10**9+7
DP=[[1,0]]
for i in range(K):
  DP.append([0,0])
  DP[i+1][0]=(DP[i][0]*(P+1)+DP[i][1]*2)%mod
  DP[i+1][1]=(DP[i][0]*(P-1)+DP[i][1]*(2*P-2))%mod
print(DP[K][0])
0