結果

問題 No.1191 数え上げを愛したい(数列編)
ユーザー sepa38sepa38
提出日時 2023-04-16 10:26:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-10-11 21:07:49
合計ジャッジ時間 11,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 386 ms
64,512 KB
testcase_01 AC 412 ms
82,432 KB
testcase_02 AC 394 ms
73,728 KB
testcase_03 AC 394 ms
72,832 KB
testcase_04 AC 412 ms
82,816 KB
testcase_05 AC 392 ms
67,712 KB
testcase_06 AC 423 ms
82,012 KB
testcase_07 AC 397 ms
76,160 KB
testcase_08 AC 396 ms
76,416 KB
testcase_09 AC 397 ms
76,160 KB
testcase_10 AC 382 ms
64,512 KB
testcase_11 AC 385 ms
64,128 KB
testcase_12 AC 407 ms
81,920 KB
testcase_13 AC 415 ms
82,048 KB
testcase_14 AC 421 ms
83,200 KB
testcase_15 AC 385 ms
64,000 KB
testcase_16 AC 384 ms
64,000 KB
testcase_17 AC 384 ms
64,512 KB
testcase_18 AC 385 ms
64,384 KB
testcase_19 AC 385 ms
64,256 KB
testcase_20 AC 387 ms
64,128 KB
testcase_21 AC 385 ms
64,384 KB
testcase_22 AC 383 ms
64,384 KB
testcase_23 AC 385 ms
64,128 KB
testcase_24 AC 383 ms
64,256 KB
testcase_25 AC 385 ms
64,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cominit(n, mod):
  global fac, finv
  fac = [1] * n
  finv = [1] * n
  for i in range(2, n):
    fac[i] = (fac[i-1] * i) % mod
    finv[i] = (finv[i-1] * pow(i, mod-2, mod)) % mod

def comb(n, k):
  global mod
  if n < k:
    return 0
  if n < 0 or k < 0:
    return 0
  return (fac[n] * finv[n-k] % mod) * finv[k] % mod

mod = 998244353
cominit(400000, mod)

n, m, a, b = map(int, input().split())
ans = 0
for i in range(m):
  if a * (n - 1) + i > b:
    break
  ans += (m - (a * (n - 1) + i)) * fac[n] * comb(n-1+i-1, i)
  ans %= mod
print(ans)
0