結果

問題 No.1049 Zero (Exhaust)
ユーザー tcltktcltk
提出日時 2021-01-17 18:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 104,832 KB
最終ジャッジ日時 2024-11-29 23:41:40
合計ジャッジ時間 5,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
88,864 KB
testcase_01 AC 154 ms
88,924 KB
testcase_02 AC 153 ms
88,748 KB
testcase_03 AC 176 ms
99,824 KB
testcase_04 AC 154 ms
88,368 KB
testcase_05 AC 171 ms
97,920 KB
testcase_06 AC 181 ms
104,704 KB
testcase_07 AC 159 ms
91,152 KB
testcase_08 AC 165 ms
93,548 KB
testcase_09 AC 175 ms
100,708 KB
testcase_10 AC 177 ms
101,504 KB
testcase_11 AC 178 ms
101,996 KB
testcase_12 AC 183 ms
104,064 KB
testcase_13 AC 164 ms
92,032 KB
testcase_14 AC 170 ms
95,996 KB
testcase_15 AC 181 ms
100,336 KB
testcase_16 AC 172 ms
97,840 KB
testcase_17 AC 172 ms
98,560 KB
testcase_18 AC 180 ms
102,016 KB
testcase_19 AC 174 ms
99,676 KB
testcase_20 AC 168 ms
93,752 KB
testcase_21 AC 179 ms
100,332 KB
testcase_22 AC 168 ms
95,360 KB
testcase_23 AC 184 ms
104,832 KB
testcase_24 AC 183 ms
104,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

def main():
    P, K = map(int, input().split())

    dp0 = [0 for _ in range(K+1)]
    dp1 = [0 for _ in range(K+1)]
    dp0[0] = 1
    dp1[0] = 0
    for i in range(K):
        dp0[i+1] = (dp0[i] * (P+1) + dp1[i] * 2) % MOD
        dp1[i+1] = (dp0[i] * (P-1) + dp1[i] * (2*(P-1))) % MOD

    print(dp0[K])

if __name__ == '__main__':
    main()
0