結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,028 KB
testcase_01 AC 37 ms
52,676 KB
testcase_02 AC 35 ms
53,132 KB
testcase_03 AC 148 ms
137,136 KB
testcase_04 AC 36 ms
52,124 KB
testcase_05 AC 146 ms
137,072 KB
testcase_06 AC 209 ms
173,324 KB
testcase_07 AC 53 ms
79,432 KB
testcase_08 AC 92 ms
102,900 KB
testcase_09 AC 157 ms
142,524 KB
testcase_10 AC 193 ms
164,164 KB
testcase_11 AC 192 ms
164,172 KB
testcase_12 AC 196 ms
164,256 KB
testcase_13 AC 84 ms
103,024 KB
testcase_14 AC 102 ms
110,000 KB
testcase_15 AC 150 ms
142,768 KB
testcase_16 AC 144 ms
137,232 KB
testcase_17 AC 142 ms
137,120 KB
testcase_18 AC 194 ms
164,112 KB
testcase_19 AC 154 ms
142,436 KB
testcase_20 AC 91 ms
102,748 KB
testcase_21 AC 153 ms
142,312 KB
testcase_22 AC 100 ms
110,016 KB
testcase_23 AC 203 ms
172,936 KB
testcase_24 AC 204 ms
173,016 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