結果

問題 No.1044 正直者大学
ユーザー yuly3yuly3
提出日時 2020-05-02 18:44:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,437 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 75,008 KB
最終ジャッジ日時 2024-06-09 21:24:53
合計ジャッジ時間 3,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
62,976 KB
testcase_01 AC 57 ms
63,104 KB
testcase_02 AC 57 ms
63,488 KB
testcase_03 AC 57 ms
62,720 KB
testcase_04 AC 56 ms
63,360 KB
testcase_05 AC 62 ms
63,488 KB
testcase_06 AC 87 ms
72,320 KB
testcase_07 AC 59 ms
63,360 KB
testcase_08 AC 59 ms
63,104 KB
testcase_09 AC 56 ms
62,720 KB
testcase_10 AC 56 ms
63,360 KB
testcase_11 AC 61 ms
62,976 KB
testcase_12 AC 68 ms
68,352 KB
testcase_13 AC 82 ms
72,960 KB
testcase_14 AC 67 ms
67,456 KB
testcase_15 AC 68 ms
68,864 KB
testcase_16 AC 81 ms
72,448 KB
testcase_17 AC 84 ms
74,368 KB
testcase_18 AC 89 ms
75,008 KB
testcase_19 AC 72 ms
69,888 KB
testcase_20 AC 73 ms
67,328 KB
testcase_21 AC 75 ms
69,632 KB
testcase_22 AC 58 ms
63,744 KB
testcase_23 AC 56 ms
63,488 KB
testcase_24 AC 57 ms
63,488 KB
testcase_25 AC 57 ms
63,232 KB
testcase_26 AC 57 ms
63,872 KB
testcase_27 AC 61 ms
62,976 KB
testcase_28 AC 57 ms
62,976 KB
testcase_29 AC 58 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


class Combination:
    def __init__(self, n: int, mod: int):
        self.mod = mod
        self.fact = [0] * (n + 1)
        self.factinv = [0] * (n + 1)
        self.inv = [0] * (n + 1)
        
        self.fact[0] = self.fact[1] = 1
        self.factinv[0] = self.factinv[1] = 1
        self.inv[1] = 1
        for i in range(2, n + 1):
            self.fact[i] = (self.fact[i - 1] * i) % mod
            self.inv[i] = (-self.inv[mod % i] * (mod // i)) % mod
            self.factinv[i] = (self.factinv[i - 1] * self.inv[i]) % mod
    
    def ncr(self, n: int, r: int):
        if r < 0 or n < r:
            return 0
        r = min(r, n - r)
        return self.fact[n] * self.factinv[r] % self.mod * self.factinv[n - r] % self.mod
    
    def nhr(self, n: int, r: int):
        return self.ncr(n + r - 1, r)
    
    def npr(self, n: int, r: int):
        if r < 0 or n < r:
            return 0
        return self.fact[n] * self.factinv[n - r] % self.mod


def solve():
    N, M, K = map(int, rl().split())
    MOD = 10 ** 9 + 7
    com = Combination(200010, MOD)
    
    ans = 0
    for i in range(1, N + 1):
        if N - i + M - i < K:
            continue
        ans = (ans + com.ncr(N, i) * com.nhr(i, M - i)) % MOD
    
    ans = ans * com.fact[N - 1] % MOD
    ans = ans * com.fact[M] % MOD
    print(ans)


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