結果

問題 No.1044 正直者大学
ユーザー kk
提出日時 2021-02-03 03:06:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 202,604 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 00:11:29
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,816 KB
testcase_01 AC 17 ms
6,940 KB
testcase_02 AC 16 ms
6,944 KB
testcase_03 AC 16 ms
6,940 KB
testcase_04 AC 16 ms
6,940 KB
testcase_05 AC 16 ms
6,940 KB
testcase_06 AC 32 ms
6,948 KB
testcase_07 AC 17 ms
6,940 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 17 ms
6,944 KB
testcase_10 AC 18 ms
6,944 KB
testcase_11 AC 17 ms
6,940 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 26 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 19 ms
6,940 KB
testcase_16 AC 27 ms
6,944 KB
testcase_17 AC 20 ms
6,940 KB
testcase_18 AC 23 ms
6,944 KB
testcase_19 AC 17 ms
6,940 KB
testcase_20 AC 17 ms
6,944 KB
testcase_21 AC 18 ms
6,940 KB
testcase_22 AC 18 ms
6,944 KB
testcase_23 AC 17 ms
6,944 KB
testcase_24 AC 18 ms
6,940 KB
testcase_25 AC 17 ms
6,940 KB
testcase_26 AC 18 ms
6,944 KB
testcase_27 AC 18 ms
6,940 KB
testcase_28 AC 19 ms
6,944 KB
testcase_29 AC 18 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

const long long MOD = 1e9 + 7;

long long f[100000+1];
long long g[100000+1];

long long modpow(long long x, long long p, long long mod) {
  long long ret = 1;
  while (p) {
    if (p & 1)
      ret = ret * x % mod;
    x = x * x % mod;
    p >>= 1;
  }
  return ret;
}

long long comb(int n, int k) {
  return f[n] * g[k] % MOD * g[n-k] % MOD;
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  f[0] = g[0] = 1;
  for (int i = 1; i <= 100000; i++) {
    f[i] = i * f[i-1] % MOD;
    g[i] = modpow(f[i], MOD-2, MOD);
  }
  
  int n, m, k;
  cin >> n >> m >> k;

  long long ret = 0;
  for (int i = 1; i <= min(n, m); i++) {
    if (n + m - 2 * i >= k) {
      long long pat = comb(n-1, i-1) * comb(m-1, i-1) % MOD;
      pat *= f[n] * f[m] % MOD;
      pat %= MOD;
      pat *= modpow(i, MOD-2, MOD);
      pat %= MOD;
      ret += pat;
      ret %= MOD;
    }
  }
  cout << ret << endl;
  
  return 0;
}
0