結果

問題 No.1049 Zero (Exhaust)
ユーザー ValkyrjaValkyrja
提出日時 2020-05-11 13:13:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-18 09:16:10
合計ジャッジ時間 11,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 515 ms
10,624 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 415 ms
10,624 KB
testcase_06 AC 735 ms
10,624 KB
testcase_07 AC 108 ms
10,624 KB
testcase_08 AC 238 ms
10,624 KB
testcase_09 AC 547 ms
10,624 KB
testcase_10 AC 653 ms
10,624 KB
testcase_11 AC 640 ms
10,624 KB
testcase_12 AC 753 ms
10,624 KB
testcase_13 AC 176 ms
10,624 KB
testcase_14 AC 333 ms
10,496 KB
testcase_15 AC 503 ms
10,496 KB
testcase_16 AC 439 ms
10,624 KB
testcase_17 AC 459 ms
10,496 KB
testcase_18 AC 679 ms
10,624 KB
testcase_19 AC 569 ms
10,624 KB
testcase_20 AC 242 ms
10,624 KB
testcase_21 AC 579 ms
10,624 KB
testcase_22 AC 343 ms
10,624 KB
testcase_23 AC 816 ms
10,496 KB
testcase_24 AC 808 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,k=map(int,input().split())
mod=10**9+7
a,b=1,0
for i in range(k):
    a,b=((p+1)*a+2*(p-1)*b)%mod,(a+2*(p-1)*b)%mod
print(a)
0