結果

問題 No.1049 Zero (Exhaust)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-02-11 19:29:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-07-08 06:56:37
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,168 KB
testcase_01 AC 45 ms
55,424 KB
testcase_02 AC 44 ms
55,424 KB
testcase_03 AC 64 ms
72,448 KB
testcase_04 AC 44 ms
55,040 KB
testcase_05 AC 61 ms
70,400 KB
testcase_06 AC 70 ms
77,440 KB
testcase_07 AC 53 ms
63,744 KB
testcase_08 AC 57 ms
66,304 KB
testcase_09 AC 63 ms
73,472 KB
testcase_10 AC 66 ms
74,624 KB
testcase_11 AC 66 ms
74,752 KB
testcase_12 AC 68 ms
76,416 KB
testcase_13 AC 53 ms
65,024 KB
testcase_14 AC 57 ms
68,480 KB
testcase_15 AC 63 ms
73,088 KB
testcase_16 AC 62 ms
70,400 KB
testcase_17 AC 61 ms
70,784 KB
testcase_18 AC 67 ms
75,008 KB
testcase_19 AC 64 ms
73,088 KB
testcase_20 AC 57 ms
66,304 KB
testcase_21 AC 65 ms
72,960 KB
testcase_22 AC 58 ms
68,096 KB
testcase_23 AC 70 ms
77,184 KB
testcase_24 AC 70 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

P,K = map(int,input().split())
mod = 10**9 + 7
a = [0]*(K+1)
b = [0]*(K+1)
a[0] = 1
for i in range(K):
    a[i+1] = (P+1)*a[i]+2*b[i]
    a[i+1] %= mod
    
    b[i+1] = (P-1)*a[i]+2*(P-1)*b[i]
    b[i+1] %= mod
print(a[-1])
0