結果

問題 No.1049 Zero (Exhaust)
ユーザー tcltktcltk
提出日時 2021-01-17 18:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 105,436 KB
最終ジャッジ日時 2024-05-07 08:26:10
合計ジャッジ時間 5,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
88,776 KB
testcase_01 AC 143 ms
88,724 KB
testcase_02 AC 140 ms
89,212 KB
testcase_03 AC 163 ms
99,988 KB
testcase_04 AC 143 ms
89,088 KB
testcase_05 AC 158 ms
98,144 KB
testcase_06 AC 166 ms
105,092 KB
testcase_07 AC 148 ms
91,376 KB
testcase_08 AC 153 ms
93,652 KB
testcase_09 AC 163 ms
101,028 KB
testcase_10 AC 164 ms
102,096 KB
testcase_11 AC 164 ms
102,168 KB
testcase_12 AC 171 ms
104,152 KB
testcase_13 AC 150 ms
92,900 KB
testcase_14 AC 155 ms
95,904 KB
testcase_15 AC 166 ms
100,416 KB
testcase_16 AC 165 ms
98,152 KB
testcase_17 AC 159 ms
98,792 KB
testcase_18 AC 166 ms
102,516 KB
testcase_19 AC 166 ms
100,340 KB
testcase_20 AC 155 ms
93,844 KB
testcase_21 AC 161 ms
100,672 KB
testcase_22 AC 155 ms
95,712 KB
testcase_23 AC 169 ms
105,436 KB
testcase_24 AC 168 ms
104,936 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