結果

問題 No.2141 Enumeratest
ユーザー rlangevinrlangevin
提出日時 2022-12-30 01:09:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 547 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 83,328 KB
最終ジャッジ日時 2024-05-03 19:43:12
合計ジャッジ時間 4,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
66,532 KB
testcase_01 AC 55 ms
68,104 KB
testcase_02 AC 68 ms
73,960 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 69 ms
76,100 KB
testcase_06 AC 54 ms
67,552 KB
testcase_07 AC 54 ms
67,620 KB
testcase_08 AC 57 ms
67,916 KB
testcase_09 AC 57 ms
67,244 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 55 ms
67,404 KB
testcase_13 AC 55 ms
66,436 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 76 ms
77,056 KB
testcase_19 RE -
testcase_20 AC 73 ms
75,924 KB
testcase_21 AC 74 ms
77,092 KB
testcase_22 AC 74 ms
76,388 KB
testcase_23 AC 69 ms
72,876 KB
testcase_24 RE -
testcase_25 AC 66 ms
71,092 KB
testcase_26 AC 76 ms
76,940 KB
testcase_27 AC 74 ms
76,932 KB
testcase_28 AC 77 ms
78,224 KB
testcase_29 AC 71 ms
74,248 KB
testcase_30 RE -
testcase_31 AC 73 ms
76,724 KB
testcase_32 RE -
testcase_33 AC 72 ms
74,760 KB
testcase_34 RE -
testcase_35 AC 64 ms
71,104 KB
testcase_36 AC 77 ms
77,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
mod = 998244353
L = [M//N] * N
for i in range(M % N):
    L[i] += 1

n = 505050

fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod

ans = 1
for a in L:
    ans *= comb(M, a)
    M -= a
    ans %= mod

print(ans)
0