結果

問題 No.2141 Enumeratest
ユーザー chro_96chro_96
提出日時 2022-12-02 21:33:54
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 17,504 KB
最終ジャッジ日時 2024-10-09 22:39:43
合計ジャッジ時間 1,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

long long power_mod (long long a, long long b, long long mod_num) {
  long long ans = 1LL;
  
  if (b > 0LL) {
    ans = power_mod(a, b/2LL, mod_num);
    ans = (ans * ans) % mod_num;
    if (b%2LL == 1LL) {
      ans = (ans * a) % mod_num;
    }
  }
  
  return ans;
}

int main () {
  int n = 0;
  int m = 0;
  
  int res = 0;
  
  long long ans = 0LL;
  long long mod_num = 998244353LL;
  
  long long fact[1000001] = {};
  long long invf[1000001] = {};
  
  int d = 0;
  int r = 0;
  
  res = scanf("%d", &n);
  res = scanf("%d", &m);
  
  fact[0] = 1LL;
  for (int i = 0; i < m; i++) {
    fact[i+1] = fact[i];
    fact[i+1] *= (long long) (i+1);
    fact[i+1] %= mod_num;
  }
  
  invf[m] = power_mod(fact[m], mod_num-2LL, mod_num);
  
  for (int i = m; i > 0; i--) {
    invf[i-1] = invf[i];
    invf[i-1] *= (long long)i;
    invf[i-1] %= mod_num;
  }
  
  d = m/n;
  r = m%n;
  
  ans = fact[m];
  for (int i = 0; i < r; i++) {
    ans *= invf[d+1];
    ans %= mod_num;
  }
  for (int i = 0; i < n-r; i++) {
    ans *= invf[d];
    ans %= mod_num;
  }
  
  printf("%lld\n", ans);
  return 0;
}
0