結果

問題 No.1049 Zero (Exhaust)
ユーザー hedwig100hedwig100
提出日時 2020-05-08 22:01:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 258 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,884 KB
最終ジャッジ日時 2024-07-04 00:40:47
合計ジャッジ時間 38,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 1,900 ms
37,400 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 1,507 ms
32,280 KB
testcase_06 TLE -
testcase_07 AC 328 ms
15,360 KB
testcase_08 AC 774 ms
22,144 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 565 ms
19,072 KB
testcase_14 AC 1,154 ms
27,520 KB
testcase_15 AC 1,916 ms
37,936 KB
testcase_16 AC 1,539 ms
32,596 KB
testcase_17 AC 1,636 ms
33,928 KB
testcase_18 TLE -
testcase_19 AC 1,974 ms
38,172 KB
testcase_20 AC 758 ms
22,016 KB
testcase_21 TLE -
testcase_22 AC 1,105 ms
26,496 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

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