結果

問題 No.1049 Zero (Exhaust)
ユーザー mkawa2mkawa2
提出日時 2020-05-09 16:40:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 625 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-07-05 21:15:06
合計ジャッジ時間 9,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 437 ms
37,388 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 362 ms
32,512 KB
testcase_06 AC 621 ms
50,044 KB
testcase_07 AC 104 ms
15,488 KB
testcase_08 AC 208 ms
22,400 KB
testcase_09 AC 480 ms
40,064 KB
testcase_10 AC 514 ms
42,880 KB
testcase_11 AC 509 ms
42,880 KB
testcase_12 AC 595 ms
47,952 KB
testcase_13 AC 155 ms
19,072 KB
testcase_14 AC 279 ms
27,636 KB
testcase_15 AC 452 ms
38,016 KB
testcase_16 AC 366 ms
32,804 KB
testcase_17 AC 380 ms
33,920 KB
testcase_18 AC 531 ms
43,364 KB
testcase_19 AC 449 ms
38,404 KB
testcase_20 AC 200 ms
22,144 KB
testcase_21 AC 465 ms
39,296 KB
testcase_22 AC 271 ms
26,752 KB
testcase_23 AC 624 ms
50,048 KB
testcase_24 AC 625 ms
49,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    md=10**9+7
    p,k=MI()
    dp=[0]*(k+1)
    dp[0]=1
    tot=1
    for i in range(k):
        dp[i+1]=dp[i]*(p+1)+(tot-dp[i])*2
        dp[i+1]%=md
        tot=tot*2*p%md
    print(dp[k])

main()
0