結果

問題 No.1049 Zero (Exhaust)
ユーザー amyuamyu
提出日時 2020-05-08 21:46:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 226 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 159,744 KB
最終ジャッジ日時 2024-07-04 00:25:36
合計ジャッジ時間 27,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 1,315 ms
112,000 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 1,091 ms
93,312 KB
testcase_06 AC 1,986 ms
159,744 KB
testcase_07 AC 243 ms
29,056 KB
testcase_08 AC 561 ms
54,400 KB
testcase_09 AC 1,438 ms
122,240 KB
testcase_10 AC 1,623 ms
132,480 KB
testcase_11 AC 1,620 ms
132,864 KB
testcase_12 AC 1,948 ms
151,936 KB
testcase_13 AC 407 ms
42,368 KB
testcase_14 AC 806 ms
74,368 KB
testcase_15 AC 1,313 ms
114,432 KB
testcase_16 AC 1,065 ms
94,592 KB
testcase_17 AC 1,113 ms
98,560 KB
testcase_18 AC 1,698 ms
134,656 KB
testcase_19 AC 1,387 ms
115,200 KB
testcase_20 AC 552 ms
53,504 KB
testcase_21 AC 1,418 ms
118,528 KB
testcase_22 AC 777 ms
71,168 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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