結果

問題 No.1044 正直者大学
ユーザー H3PO4H3PO4
提出日時 2020-05-01 22:18:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 990 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-12-25 12:28:36
合計ジャッジ時間 9,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 35 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 450 ms
18,560 KB
testcase_06 AC 990 ms
18,432 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 329 ms
16,000 KB
testcase_13 AC 643 ms
16,384 KB
testcase_14 AC 394 ms
17,664 KB
testcase_15 AC 441 ms
17,920 KB
testcase_16 AC 708 ms
17,408 KB
testcase_17 AC 462 ms
15,744 KB
testcase_18 AC 464 ms
14,848 KB
testcase_19 AC 295 ms
14,848 KB
testcase_20 AC 176 ms
13,312 KB
testcase_21 AC 234 ms
13,824 KB
testcase_22 AC 257 ms
14,848 KB
testcase_23 AC 383 ms
17,280 KB
testcase_24 AC 346 ms
16,384 KB
testcase_25 AC 431 ms
17,920 KB
testcase_26 AC 422 ms
18,176 KB
testcase_27 AC 26 ms
10,624 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
modinv = lambda a, mod=10 ** 9 + 7: pow(a, mod - 2, mod)

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

fac, inv = [1] * (max(N, M) + 1), [1] * (max(N, M) + 1)
for i in range(1, max(N, M) + 1):
    fac[i] = fac[i - 1] * i % MOD
    inv[i] = modinv(fac[i])
comb = lambda n, r: (fac[n] * inv[r] * inv[n - r]) % MOD

x = 1
ans = 0
while N + M - 2 * x >= K and x <= min(N, M):
    ans = (ans + fac[N] * fac[M] * comb(N - 1, x - 1) * comb(M - 1, x - 1) * modinv(x)) % MOD
    x += 1
print(ans)
0