結果

問題 No.1191 数え上げを愛したい(数列編)
ユーザー kk
提出日時 2020-09-04 00:24:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 201,164 KB
実行使用メモリ 11,364 KB
最終ジャッジ日時 2024-05-03 09:09:08
合計ジャッジ時間 5,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
11,228 KB
testcase_01 AC 81 ms
11,232 KB
testcase_02 AC 80 ms
11,232 KB
testcase_03 AC 80 ms
11,236 KB
testcase_04 AC 81 ms
11,232 KB
testcase_05 AC 80 ms
11,232 KB
testcase_06 AC 81 ms
11,232 KB
testcase_07 AC 80 ms
11,224 KB
testcase_08 AC 79 ms
11,360 KB
testcase_09 AC 81 ms
11,236 KB
testcase_10 AC 80 ms
11,232 KB
testcase_11 AC 80 ms
11,236 KB
testcase_12 AC 83 ms
11,232 KB
testcase_13 AC 83 ms
11,228 KB
testcase_14 AC 81 ms
11,236 KB
testcase_15 AC 81 ms
11,356 KB
testcase_16 AC 80 ms
11,228 KB
testcase_17 AC 80 ms
11,232 KB
testcase_18 AC 81 ms
11,356 KB
testcase_19 AC 80 ms
11,360 KB
testcase_20 AC 79 ms
11,224 KB
testcase_21 AC 79 ms
11,356 KB
testcase_22 AC 80 ms
11,364 KB
testcase_23 AC 81 ms
11,232 KB
testcase_24 AC 79 ms
11,236 KB
testcase_25 AC 79 ms
11,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);
const long long MOD = 998244353;

long long f[500000], g[500000];

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

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;
}

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

  long long n, m, a, b;
  cin >> n >> m >> a >> b;
  
  f[0] = 1, g[0] = 1;
  for (int i = 1; i < 500000; i++) f[i] = i * f[i-1] % MOD;
  for (int i = 1; i < 500000; i++) g[i] = modpow(f[i], MOD - 2, MOD);

  long long ret = 0;
  for (long long h = 1; h <= m; h++) {
    long long t = h + (n - 1) * a;
    if (t > h + b) continue;
    if (t > m) continue;
    long long d = min(m - t, h + b - t);
    (ret += comb(n+d-1, d)) %= MOD;
  }

  cout << (ret * f[n]) % MOD << endl;
  
  return 0;
}
0