結果

問題 No.1049 Zero (Exhaust)
ユーザー H20H20
提出日時 2021-04-22 15:54:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 59,312 KB
最終ジャッジ日時 2024-07-04 06:23:23
合計ジャッジ時間 7,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,188 KB
testcase_01 AC 37 ms
52,768 KB
testcase_02 AC 37 ms
52,836 KB
testcase_03 AC 347 ms
59,312 KB
testcase_04 AC 38 ms
52,728 KB
testcase_05 AC 287 ms
58,652 KB
testcase_06 AC 490 ms
57,960 KB
testcase_07 AC 88 ms
58,828 KB
testcase_08 AC 161 ms
58,248 KB
testcase_09 AC 369 ms
58,824 KB
testcase_10 AC 402 ms
58,028 KB
testcase_11 AC 407 ms
58,324 KB
testcase_12 AC 469 ms
58,724 KB
testcase_13 AC 127 ms
58,872 KB
testcase_14 AC 225 ms
59,224 KB
testcase_15 AC 347 ms
59,308 KB
testcase_16 AC 285 ms
58,076 KB
testcase_17 AC 300 ms
58,864 KB
testcase_18 AC 415 ms
58,268 KB
testcase_19 AC 352 ms
58,484 KB
testcase_20 AC 164 ms
58,976 KB
testcase_21 AC 365 ms
58,492 KB
testcase_22 AC 213 ms
57,956 KB
testcase_23 AC 496 ms
58,652 KB
testcase_24 AC 498 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,K=map(int,input().split())
p = 1
MOD= 10**9+7
for i in range(K):
    p=(p*(P+1)+(pow(2*P,i,MOD)-p)*2)%MOD
print(p)
0