結果

問題 No.1049 Zero (Exhaust)
ユーザー ayaoniayaoni
提出日時 2020-11-22 15:33:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 60,000 KB
最終ジャッジ日時 2024-07-23 16:34:22
合計ジャッジ時間 2,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,276 KB
testcase_01 AC 37 ms
53,500 KB
testcase_02 AC 38 ms
53,628 KB
testcase_03 AC 49 ms
58,524 KB
testcase_04 AC 38 ms
52,028 KB
testcase_05 AC 47 ms
58,628 KB
testcase_06 AC 50 ms
58,288 KB
testcase_07 AC 42 ms
59,428 KB
testcase_08 AC 43 ms
58,708 KB
testcase_09 AC 48 ms
59,300 KB
testcase_10 AC 48 ms
60,000 KB
testcase_11 AC 47 ms
58,500 KB
testcase_12 AC 50 ms
59,856 KB
testcase_13 AC 43 ms
59,672 KB
testcase_14 AC 44 ms
58,044 KB
testcase_15 AC 47 ms
58,712 KB
testcase_16 AC 46 ms
59,780 KB
testcase_17 AC 47 ms
59,188 KB
testcase_18 AC 50 ms
58,852 KB
testcase_19 AC 47 ms
58,764 KB
testcase_20 AC 44 ms
58,632 KB
testcase_21 AC 48 ms
58,412 KB
testcase_22 AC 45 ms
59,960 KB
testcase_23 AC 50 ms
59,312 KB
testcase_24 AC 51 ms
58,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())


P,K = MI()
mod = 10**9+7

a,b = P+1,2
for _ in range(K-1):
    a,b = (P+1)*a+(P-1)*b,2*a+(2*P-2)*b
    a %= mod
    b %= mod

print(a)
0