結果

問題 No.1049 Zero (Exhaust)
ユーザー FromBooskaFromBooska
提出日時 2023-02-17 11:51:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 148,808 KB
最終ジャッジ日時 2024-07-19 06:54:39
合計ジャッジ時間 3,694 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,064 KB
testcase_01 AC 36 ms
52,596 KB
testcase_02 AC 34 ms
52,452 KB
testcase_03 AC 125 ms
122,636 KB
testcase_04 AC 32 ms
52,608 KB
testcase_05 AC 120 ms
121,972 KB
testcase_06 AC 169 ms
148,516 KB
testcase_07 AC 45 ms
70,440 KB
testcase_08 AC 78 ms
95,508 KB
testcase_09 AC 129 ms
123,368 KB
testcase_10 AC 158 ms
147,076 KB
testcase_11 AC 158 ms
147,248 KB
testcase_12 AC 162 ms
148,012 KB
testcase_13 AC 77 ms
94,920 KB
testcase_14 AC 92 ms
96,804 KB
testcase_15 AC 129 ms
122,712 KB
testcase_16 AC 123 ms
121,928 KB
testcase_17 AC 118 ms
122,184 KB
testcase_18 AC 171 ms
146,992 KB
testcase_19 AC 130 ms
122,696 KB
testcase_20 AC 78 ms
95,648 KB
testcase_21 AC 124 ms
122,996 KB
testcase_22 AC 82 ms
96,620 KB
testcase_23 AC 164 ms
148,808 KB
testcase_24 AC 177 ms
148,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# あるステップの段階でN=0 or N!=0
# N=0なら、掛け算でP通り、足し算で1通り、の合計P+1通りで、次もN=0となる
# N!=0なら、掛け算で1通り(0、素数なので)、足し算で1通りの合計2通りで次が0になる
# 操作は全部でP*2通りなので、残りはN!=0となる

P, K = map(int, input().split())
mod = 10**9+7

# dp[操作番号][0 for 0, 1 for nonzero]
dp = [[0]*2 for i in range(K+1)]
dp[0][0] = 1

for i in range(1, K+1):
    dp[i][0] += dp[i-1][0]*(P+1)
    dp[i][0] += dp[i-1][1]*(2)
    dp[i][0] %= mod
    dp[i][1] += dp[i-1][0]*(P-1)
    dp[i][1] += dp[i-1][1]*(P*2-2)
    dp[i][1] %= mod

#print(dp)

ans = dp[K][0]%mod
print(ans)
0