結果

問題 No.1044 正直者大学
ユーザー pekempeypekempey
提出日時 2020-05-01 22:20:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 96,952 KB
最終ジャッジ日時 2024-06-07 10:13:26
合計ジャッジ時間 3,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
73,216 KB
testcase_01 AC 75 ms
73,088 KB
testcase_02 AC 77 ms
74,112 KB
testcase_03 AC 74 ms
73,728 KB
testcase_04 AC 75 ms
73,472 KB
testcase_05 AC 75 ms
73,856 KB
testcase_06 AC 139 ms
93,240 KB
testcase_07 AC 71 ms
73,344 KB
testcase_08 AC 74 ms
73,088 KB
testcase_09 AC 74 ms
73,600 KB
testcase_10 AC 77 ms
73,600 KB
testcase_11 AC 74 ms
73,728 KB
testcase_12 AC 117 ms
92,928 KB
testcase_13 AC 126 ms
93,120 KB
testcase_14 AC 96 ms
86,624 KB
testcase_15 AC 116 ms
93,112 KB
testcase_16 AC 142 ms
96,952 KB
testcase_17 AC 127 ms
92,988 KB
testcase_18 AC 127 ms
92,748 KB
testcase_19 AC 122 ms
93,932 KB
testcase_20 AC 87 ms
81,248 KB
testcase_21 AC 121 ms
93,076 KB
testcase_22 AC 72 ms
73,216 KB
testcase_23 AC 71 ms
73,216 KB
testcase_24 AC 71 ms
73,216 KB
testcase_25 AC 73 ms
73,472 KB
testcase_26 AC 72 ms
73,216 KB
testcase_27 AC 73 ms
73,600 KB
testcase_28 AC 71 ms
73,472 KB
testcase_29 AC 73 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def input_int():
    return int(input())

def input_ints():
    return list(map(int, input().split()))

N, M, K = input_ints()

MOD = 10 ** 9 + 7

fact = [None] * 202020
inv = [None] * 202020
ifact = [None] * 202020
fact[0] = 1
fact[1] = 1
ifact[0] = 1
ifact[1] = 1
inv[1] = 1

for i in range(2, len(fact)):
    inv[i] = -inv[MOD % i] * (MOD // i) % MOD
    fact[i] = i * fact[i - 1] % MOD
    ifact[i] = inv[i] * ifact[i - 1] % MOD

def C(n, r):
    if n < 0 or r < 0 or n < r: return 0
    return fact[n] * ifact[r] * ifact[n - r] % MOD

ans = 0
for i in range(201020):
    if N + M - (i + 1) * 2 >= K:
        ans += C(N - 1, i) * C(M - 1, i) * fact[N] * fact[M] * inv[i + 1]

print(ans % MOD)


0