結果

問題 No.2141 Enumeratest
ユーザー sepa38sepa38
提出日時 2022-12-02 21:35:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 509 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 91,312 KB
最終ジャッジ日時 2024-10-09 22:42:40
合計ジャッジ時間 35,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 880 ms
74,356 KB
testcase_01 AC 889 ms
74,472 KB
testcase_02 AC 898 ms
81,984 KB
testcase_03 AC 886 ms
74,680 KB
testcase_04 RE -
testcase_05 AC 903 ms
75,572 KB
testcase_06 AC 891 ms
74,904 KB
testcase_07 AC 879 ms
75,288 KB
testcase_08 AC 882 ms
75,160 KB
testcase_09 AC 890 ms
74,980 KB
testcase_10 AC 887 ms
74,524 KB
testcase_11 AC 890 ms
74,988 KB
testcase_12 AC 889 ms
74,188 KB
testcase_13 AC 885 ms
73,376 KB
testcase_14 AC 889 ms
74,528 KB
testcase_15 AC 897 ms
74,684 KB
testcase_16 AC 891 ms
74,792 KB
testcase_17 AC 905 ms
78,028 KB
testcase_18 AC 902 ms
79,024 KB
testcase_19 AC 902 ms
77,064 KB
testcase_20 AC 903 ms
77,704 KB
testcase_21 AC 905 ms
77,472 KB
testcase_22 AC 907 ms
78,220 KB
testcase_23 AC 905 ms
77,800 KB
testcase_24 AC 921 ms
91,168 KB
testcase_25 AC 893 ms
78,236 KB
testcase_26 AC 907 ms
78,540 KB
testcase_27 AC 905 ms
78,916 KB
testcase_28 AC 909 ms
78,192 KB
testcase_29 AC 898 ms
77,672 KB
testcase_30 AC 908 ms
78,632 KB
testcase_31 AC 920 ms
77,660 KB
testcase_32 AC 898 ms
78,296 KB
testcase_33 AC 898 ms
78,960 KB
testcase_34 AC 928 ms
91,312 KB
testcase_35 AC 899 ms
77,568 KB
testcase_36 AC 918 ms
77,144 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] * finv[k]) % mod

mod = 998244353

cominit(10**6, mod)


n, m = map(int, input().split())
ans = 1
k = m
for i in range(n-1):
  ans *= comb(k, m//n+(m%n>i))
  ans %= mod
  k -= m // n + (m % n > i)
print(ans)
0