結果

問題 No.1035 Color Box
ユーザー w0mbatw0mbat
提出日時 2020-04-24 23:45:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 2,799 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 66,944 KB
最終ジャッジ日時 2024-10-15 03:56:48
合計ジャッジ時間 3,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
66,688 KB
testcase_01 AC 44 ms
59,136 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 54 ms
62,976 KB
testcase_04 AC 59 ms
64,128 KB
testcase_05 AC 52 ms
63,360 KB
testcase_06 AC 41 ms
53,376 KB
testcase_07 AC 50 ms
61,184 KB
testcase_08 AC 93 ms
66,944 KB
testcase_09 AC 72 ms
65,408 KB
testcase_10 AC 44 ms
59,136 KB
testcase_11 AC 41 ms
58,496 KB
testcase_12 AC 42 ms
58,112 KB
testcase_13 AC 86 ms
66,304 KB
testcase_14 AC 92 ms
66,048 KB
testcase_15 AC 97 ms
66,944 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 37 ms
52,480 KB
testcase_19 AC 97 ms
66,944 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 37 ms
52,992 KB
testcase_22 AC 38 ms
52,480 KB
testcase_23 AC 38 ms
52,352 KB
testcase_24 AC 37 ms
52,480 KB
testcase_25 AC 38 ms
52,480 KB
testcase_26 AC 37 ms
52,864 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 38 ms
52,480 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 38 ms
52,864 KB
testcase_32 AC 38 ms
52,480 KB
testcase_33 AC 38 ms
52,480 KB
testcase_34 AC 38 ms
52,608 KB
testcase_35 AC 37 ms
52,864 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 39 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())

class FactorialUtils:
    def __init__(self, n, mod=10**9+7):
        self.__mod = mod
        self.fac = [1] * (n+1)
        self.ifac = [1] * (n+1)
        for i in range(2, n+1): self.fac[i] = self.fac[i-1] * i % mod
        self.ifac[n] = pow(self.fac[n], mod-2, mod)
        for i in range(n, 1, -1): self.ifac[i-1] = self.ifac[i] * i % mod

    def choose(self, n, r):
        if r < 0 or r > n: return 0
        return (self.fac[n] * self.ifac[n-r] % self.__mod) * self.ifac[r] % self.__mod

    def multichoose(self, u, k):
        return (self.fac[u+k-1] * self.ifac[u-1] % self.__mod) * self.ifac[k] %self.__mod

MOD = 10**9+7
class Mint:
    def __init__(self, value=0):
        self.value = value % MOD
        if self.value < 0: self.value += MOD

    @staticmethod
    def get_value(x): return x.value if isinstance(x, Mint) else x

    def inverse(self):
        a, b = self.value, MOD
        u, v = 1, 0
        while b:
            t = a // b
            b, a = a - t * b, b
            v, u = u - t * v, v
        if u < 0: u += MOD
        return u

    def __repr__(self): return str(self.value)
    def __eq__(self, other): return self.value == other.value
    def __neg__(self): return Mint(-self.value)
    def __hash__(self): return hash(self.value)
    def __bool__(self): return self.value != 0

    def __iadd__(self, other):
        self.value = (self.value + Mint.get_value(other)) % MOD
        return self
    def __add__(self, other):
        new_obj = Mint(self.value)
        new_obj += other
        return new_obj
    __radd__ = __add__

    def __isub__(self, other):
        self.value = (self.value - Mint.get_value(other)) % MOD
        if self.value < 0: self.value += MOD
        return self
    def __sub__(self, other):
        new_obj = Mint(self.value)
        new_obj -= other
        return new_obj
    def __rsub__(self, other):
        new_obj = Mint(Mint.get_value(other))
        new_obj -= self
        return new_obj

    def __imul__(self, other):
        self.value = self.value * Mint.get_value(other) % MOD
        return self
    def __mul__(self, other):
        new_obj = Mint(self.value)
        new_obj *= other
        return new_obj
    __rmul__ = __mul__

    def __ifloordiv__(self, other):
        other = other if isinstance(other, Mint) else Mint(other)
        self *= other.inverse()
        return self
    def __floordiv__(self, other):
        new_obj = Mint(self.value)
        new_obj //= other
        return new_obj
    def __rfloordiv__(self, other):
        new_obj = Mint(Mint.get_value(other))
        new_obj //= self
        return new_obj

fu=FactorialUtils(N+1)
ans=Mint(pow(M,N,MOD))
for i in range(1,M+1):
    ans -= pow(M-i,N,MOD)*fu.choose(M,i) * (1 if i&1 else -1)
print(ans)
0