結果

問題 No.1049 Zero (Exhaust)
ユーザー いたいた
提出日時 2024-12-29 12:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 811 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 125,124 KB
最終ジャッジ日時 2024-12-29 12:44:21
合計ジャッジ時間 12,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,860 KB
testcase_01 AC 41 ms
54,652 KB
testcase_02 AC 40 ms
54,676 KB
testcase_03 AC 579 ms
109,492 KB
testcase_04 AC 41 ms
53,620 KB
testcase_05 AC 471 ms
103,724 KB
testcase_06 AC 793 ms
124,744 KB
testcase_07 AC 161 ms
82,868 KB
testcase_08 AC 287 ms
91,444 KB
testcase_09 AC 630 ms
112,712 KB
testcase_10 AC 668 ms
116,296 KB
testcase_11 AC 664 ms
116,160 KB
testcase_12 AC 759 ms
122,132 KB
testcase_13 AC 231 ms
87,344 KB
testcase_14 AC 388 ms
97,816 KB
testcase_15 AC 591 ms
110,412 KB
testcase_16 AC 483 ms
103,860 KB
testcase_17 AC 515 ms
105,152 KB
testcase_18 AC 683 ms
116,668 KB
testcase_19 AC 586 ms
110,540 KB
testcase_20 AC 286 ms
91,068 KB
testcase_21 AC 596 ms
111,648 KB
testcase_22 AC 370 ms
96,652 KB
testcase_23 AC 789 ms
125,124 KB
testcase_24 AC 811 ms
124,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy



P,K=map(int,input().split())
now=[0,0]
pnow=[1,0]

d=1000000007

for i in range(K):
  now=[0,0]
  now[0]+=pnow[0]*(P+1)
  now[0]+=pnow[1]*2
  now[1]+=pnow[0]*(P-1)
  now[1]+=pnow[1]*(P-1)*2
  now[0]%=d
  now[1]%=d
  pnow=copy.deepcopy(now)
print(now[0])
0