結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
66,344 KB
testcase_01 AC 54 ms
66,944 KB
testcase_02 AC 66 ms
74,024 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 68 ms
77,416 KB
testcase_06 AC 53 ms
67,180 KB
testcase_07 AC 54 ms
67,012 KB
testcase_08 AC 56 ms
68,168 KB
testcase_09 AC 55 ms
66,864 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 54 ms
67,620 KB
testcase_13 AC 53 ms
67,444 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 73 ms
76,928 KB
testcase_19 RE -
testcase_20 AC 71 ms
75,724 KB
testcase_21 AC 73 ms
77,320 KB
testcase_22 AC 70 ms
75,004 KB
testcase_23 AC 66 ms
72,920 KB
testcase_24 RE -
testcase_25 AC 64 ms
71,124 KB
testcase_26 AC 72 ms
79,124 KB
testcase_27 AC 72 ms
76,608 KB
testcase_28 AC 77 ms
79,008 KB
testcase_29 AC 69 ms
74,488 KB
testcase_30 RE -
testcase_31 AC 71 ms
75,036 KB
testcase_32 RE -
testcase_33 AC 70 ms
74,952 KB
testcase_34 RE -
testcase_35 AC 62 ms
70,268 KB
testcase_36 AC 75 ms
78,472 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