結果

問題 No.1049 Zero (Exhaust)
ユーザー tcltktcltk
提出日時 2021-01-17 19:04:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,752 KB
最終ジャッジ日時 2024-11-30 00:13:33
合計ジャッジ時間 14,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
44,108 KB
testcase_01 AC 536 ms
44,608 KB
testcase_02 AC 507 ms
44,120 KB
testcase_03 AC 507 ms
44,628 KB
testcase_04 AC 508 ms
44,624 KB
testcase_05 AC 506 ms
44,712 KB
testcase_06 AC 507 ms
44,372 KB
testcase_07 AC 509 ms
44,752 KB
testcase_08 AC 507 ms
44,116 KB
testcase_09 AC 511 ms
44,372 KB
testcase_10 AC 508 ms
44,752 KB
testcase_11 AC 508 ms
44,372 KB
testcase_12 AC 505 ms
44,244 KB
testcase_13 AC 506 ms
44,492 KB
testcase_14 AC 503 ms
44,748 KB
testcase_15 AC 504 ms
44,116 KB
testcase_16 AC 503 ms
44,460 KB
testcase_17 AC 503 ms
44,600 KB
testcase_18 AC 506 ms
44,240 KB
testcase_19 AC 507 ms
44,752 KB
testcase_20 AC 505 ms
44,620 KB
testcase_21 AC 504 ms
44,496 KB
testcase_22 AC 505 ms
44,116 KB
testcase_23 AC 505 ms
44,112 KB
testcase_24 AC 511 ms
44,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq
import numpy as np


def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """5 10
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

def main():
    P, K = map(int, input().split())
    
    A = np.matrix([[P+1, 2], [P-1, 2*P-2]])
    M = A
    An = np.identity(M.shape[0], dtype=object)
    while K > 0:
        if K & 1 > 0:
            An = An * M % MOD
        M = M * M % MOD
        K >>= 1
    print(An[0, 0])

    # dp0 = [0 for _ in range(K+1)]
    # dp1 = [0 for _ in range(K+1)]
    # dp0[0] = 1
    # dp1[0] = 0
    # for i in range(K):
    #     dp0[i+1] = (dp0[i] * (P+1) + dp1[i] * 2) % MOD
    #     dp1[i+1] = (dp0[i] * (P-1) + dp1[i] * (2*(P-1))) % MOD

    # print(dp0[K])

if __name__ == '__main__':
    main()
0