結果

問題 No.1049 Zero (Exhaust)
ユーザー tcltktcltk
提出日時 2021-01-17 19:04:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,884 KB
最終ジャッジ日時 2024-05-07 08:54:42
合計ジャッジ時間 13,466 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
44,476 KB
testcase_01 AC 455 ms
44,748 KB
testcase_02 AC 458 ms
44,884 KB
testcase_03 AC 468 ms
44,876 KB
testcase_04 AC 447 ms
44,752 KB
testcase_05 AC 453 ms
44,364 KB
testcase_06 AC 438 ms
44,756 KB
testcase_07 AC 446 ms
44,608 KB
testcase_08 AC 438 ms
44,624 KB
testcase_09 AC 443 ms
44,884 KB
testcase_10 AC 451 ms
44,372 KB
testcase_11 AC 460 ms
44,676 KB
testcase_12 AC 446 ms
44,620 KB
testcase_13 AC 442 ms
44,372 KB
testcase_14 AC 452 ms
44,492 KB
testcase_15 AC 451 ms
44,496 KB
testcase_16 AC 451 ms
44,752 KB
testcase_17 AC 456 ms
44,240 KB
testcase_18 AC 449 ms
44,244 KB
testcase_19 AC 446 ms
44,620 KB
testcase_20 AC 464 ms
44,472 KB
testcase_21 AC 464 ms
44,372 KB
testcase_22 AC 460 ms
44,492 KB
testcase_23 AC 449 ms
44,496 KB
testcase_24 AC 448 ms
44,752 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