結果

問題 No.1049 Zero (Exhaust)
ユーザー hedwig100hedwig100
提出日時 2020-05-08 22:01:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 497 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-07-04 00:41:31
合計ジャッジ時間 7,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 321 ms
63,360 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 267 ms
62,464 KB
testcase_06 AC 479 ms
65,920 KB
testcase_07 AC 90 ms
59,264 KB
testcase_08 AC 161 ms
60,032 KB
testcase_09 AC 358 ms
64,000 KB
testcase_10 AC 380 ms
64,128 KB
testcase_11 AC 380 ms
64,256 KB
testcase_12 AC 437 ms
65,536 KB
testcase_13 AC 123 ms
59,776 KB
testcase_14 AC 210 ms
61,312 KB
testcase_15 AC 341 ms
63,872 KB
testcase_16 AC 281 ms
62,976 KB
testcase_17 AC 290 ms
62,592 KB
testcase_18 AC 403 ms
64,768 KB
testcase_19 AC 347 ms
63,232 KB
testcase_20 AC 157 ms
60,288 KB
testcase_21 AC 355 ms
63,616 KB
testcase_22 AC 210 ms
61,312 KB
testcase_23 AC 497 ms
65,920 KB
testcase_24 AC 478 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 **9 + 7
def main():
    p,K = map(int,input().split())
    dp = [0] * (K + 1)
    dp[0] = 1
    for i in range(K):
        dp[i + 1] = (p - 1)*dp[i] + 2*pow(2*p,i,MOD)
        dp[i + 1] %= MOD
    print(dp[-1])
if __name__ == '__main__':
    main()
0