結果

問題 No.1049 Zero (Exhaust)
ユーザー roarisroaris
提出日時 2020-05-08 22:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 69,180 KB
最終ジャッジ日時 2024-07-04 01:06:44
合計ジャッジ時間 8,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,652 KB
testcase_01 AC 40 ms
53,716 KB
testcase_02 AC 40 ms
53,976 KB
testcase_03 AC 357 ms
66,148 KB
testcase_04 AC 39 ms
54,708 KB
testcase_05 AC 301 ms
65,644 KB
testcase_06 AC 512 ms
69,180 KB
testcase_07 AC 93 ms
61,680 KB
testcase_08 AC 174 ms
63,532 KB
testcase_09 AC 383 ms
67,276 KB
testcase_10 AC 419 ms
68,184 KB
testcase_11 AC 425 ms
67,888 KB
testcase_12 AC 489 ms
67,636 KB
testcase_13 AC 135 ms
62,516 KB
testcase_14 AC 229 ms
64,752 KB
testcase_15 AC 359 ms
67,676 KB
testcase_16 AC 292 ms
66,304 KB
testcase_17 AC 312 ms
66,940 KB
testcase_18 AC 424 ms
67,140 KB
testcase_19 AC 355 ms
65,852 KB
testcase_20 AC 167 ms
63,268 KB
testcase_21 AC 372 ms
66,800 KB
testcase_22 AC 223 ms
63,824 KB
testcase_23 AC 505 ms
68,776 KB
testcase_24 AC 503 ms
68,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

P, K = map(int, input().split())
MOD = 10**9+7
dp = [0]*(K+1)
dp[0] = 1

for i in range(1, K+1):
    dp[i] = ((P+1)*dp[i-1])%MOD
    
    if i>=2:
        dp[i] += (pow(2*P, i-1, MOD)-dp[i-1])*2
        dp[i] %= MOD

print(dp[K])
0