結果

問題 No.1049 Zero (Exhaust)
ユーザー H3PO4H3PO4
提出日時 2020-05-08 22:06:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 905 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-04 00:44:51
合計ジャッジ時間 13,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 35 ms
10,752 KB
testcase_03 AC 589 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 481 ms
10,496 KB
testcase_06 AC 838 ms
10,496 KB
testcase_07 AC 130 ms
10,624 KB
testcase_08 AC 270 ms
10,496 KB
testcase_09 AC 652 ms
10,496 KB
testcase_10 AC 728 ms
10,624 KB
testcase_11 AC 743 ms
10,496 KB
testcase_12 AC 845 ms
10,624 KB
testcase_13 AC 203 ms
10,624 KB
testcase_14 AC 385 ms
10,496 KB
testcase_15 AC 617 ms
10,624 KB
testcase_16 AC 504 ms
10,496 KB
testcase_17 AC 530 ms
10,752 KB
testcase_18 AC 743 ms
10,496 KB
testcase_19 AC 627 ms
10,624 KB
testcase_20 AC 273 ms
10,496 KB
testcase_21 AC 650 ms
10,624 KB
testcase_22 AC 383 ms
10,496 KB
testcase_23 AC 905 ms
10,496 KB
testcase_24 AC 902 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P, K = map(int, input().split())

MOD = 10 ** 9 + 7
dp0, dpn = 1, 0
for i in range(K):
    dp0, dpn = (dp0 * (P + 1) + dpn * 2) % MOD, \
               (dp0 * (P - 1) + dpn * (2 * P - 2)) % MOD
print(dp0)
0