結果

問題 No.391 CODING WAR
ユーザー _polarbear08_polarbear08
提出日時 2019-06-11 20:50:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 1,936 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-04-16 17:36:28
合計ジャッジ時間 6,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 709 ms
22,784 KB
testcase_10 AC 587 ms
22,784 KB
testcase_11 AC 470 ms
22,656 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 648 ms
22,784 KB
testcase_14 AC 562 ms
19,712 KB
testcase_15 AC 633 ms
20,992 KB
testcase_16 AC 387 ms
16,640 KB
testcase_17 AC 435 ms
18,048 KB
testcase_18 AC 315 ms
15,616 KB
testcase_19 AC 320 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
stdin = sys.stdin

sys.setrecursionlimit(10 ** 7)

def li(): return map(int, stdin.readline().split())
def li_(): return map(lambda x: int(x) - 1, stdin.readline().split())
def lf(): return map(float, stdin.readline().split())
def ls(): return stdin.readline().split()
def ns(): return stdin.readline().rstrip()
def lc(): return list(ns())
def ni(): return int(stdin.readline())
def nf(): return float(stdin.readline())



class CombTools(object):
    def __init__(self, cap: int, mod: int):
        self.cap = cap
        self.mod = mod
        self.inv = self._calc_inv()
        self.fac = self._calc_fac()
        self.fac_inv = self._calc_fac_inv()

    def _calc_inv(self):
        inv = [0, 1]
        for i in range(2, self.cap+1):
            inv.append((self.mod - (self.mod // i) * inv[self.mod % i]) % self.mod)

        return inv

    def _calc_fac(self):
        fac = [1]
        for i in range(1, self.cap+1):
            fac.append((i * fac[-1]) % self.mod)

        return fac

    def _calc_fac_inv(self):
        fac_inv = [1]
        for i in range(1, self.cap+1):
            fac_inv.append((self.inv[i] * fac_inv[-1]) % self.mod)

        return fac_inv

    def nCr(self, n: int, r: int):
        # validation
        if r > n:
            raise ValueError("n must be larger than r (n={}, r={})".format(n, r))

        # calculation
        return self.fac[n] * self.fac_inv[n-r] * self.fac_inv[r] % self.mod

    def nPr(self, n: int, r: int):
        # validation
        if r > n:
            raise ValueError("n must be larger than r (n={}, r={})".format(n, r))

        # calculation
        return self.fac[n] * self.fac_inv[n-r] % self.mod

    def nHr(self, n: int, r: int):
        return self.nCr(n+r-1, n)

n, m = li()

MOD = 10**9 + 7
ct = CombTools(m, MOD)

ans = 0

for i in range(m+1):
    ans += (-1)**(i%2) * ct.nCr(m, i) * pow(m-i, n, MOD)

    ans += MOD
    ans %= MOD

print(ans)
0