結果

問題 No.1049 Zero (Exhaust)
ユーザー uni_pythonuni_python
提出日時 2020-06-21 12:27:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 148,480 KB
最終ジャッジ日時 2024-07-03 17:56:29
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,228 KB
testcase_01 AC 39 ms
52,900 KB
testcase_02 AC 38 ms
52,588 KB
testcase_03 AC 127 ms
122,744 KB
testcase_04 AC 37 ms
53,612 KB
testcase_05 AC 125 ms
121,340 KB
testcase_06 AC 178 ms
148,296 KB
testcase_07 AC 51 ms
71,240 KB
testcase_08 AC 84 ms
95,424 KB
testcase_09 AC 131 ms
122,868 KB
testcase_10 AC 166 ms
146,688 KB
testcase_11 AC 164 ms
146,804 KB
testcase_12 AC 172 ms
148,076 KB
testcase_13 AC 83 ms
94,672 KB
testcase_14 AC 92 ms
96,348 KB
testcase_15 AC 133 ms
122,768 KB
testcase_16 AC 130 ms
121,536 KB
testcase_17 AC 131 ms
121,692 KB
testcase_18 AC 171 ms
147,228 KB
testcase_19 AC 131 ms
122,596 KB
testcase_20 AC 83 ms
95,536 KB
testcase_21 AC 131 ms
122,820 KB
testcase_22 AC 88 ms
96,580 KB
testcase_23 AC 174 ms
148,480 KB
testcase_24 AC 173 ms
148,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
mod=10**9+7

def main():
    P,K=MI()
    dp=[[0,0]for _ in range(K+1)]
    #i回操作して,Nが0or非0の通り数
    dp[0][0]=1
    
    for i in range(K):
        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[-1][0])
    
    
main()
0