結果

問題 No.2130 分配方法の数え上げ mod 998244353
ユーザー H20H20
提出日時 2022-11-25 21:36:19
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 512 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-10-02 04:11:00
合計ジャッジ時間 4,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
80,128 KB
testcase_01 AC 68 ms
80,128 KB
testcase_02 AC 67 ms
80,512 KB
testcase_03 AC 70 ms
80,128 KB
testcase_04 AC 67 ms
80,128 KB
testcase_05 AC 67 ms
80,128 KB
testcase_06 AC 68 ms
80,384 KB
testcase_07 AC 67 ms
80,000 KB
testcase_08 AC 69 ms
80,256 KB
testcase_09 AC 69 ms
80,256 KB
testcase_10 AC 70 ms
80,128 KB
testcase_11 AC 69 ms
80,640 KB
testcase_12 AC 69 ms
80,512 KB
testcase_13 AC 70 ms
80,512 KB
testcase_14 AC 70 ms
80,384 KB
testcase_15 AC 70 ms
80,512 KB
testcase_16 AC 70 ms
80,640 KB
testcase_17 AC 74 ms
82,176 KB
testcase_18 AC 74 ms
81,792 KB
testcase_19 AC 75 ms
83,200 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 二項係数

mod = 998244353
fac = [1, 1]
finv = [1, 1]
inv = [0, 1]


def init(n):
    for i in range(2, n + 1):
        fac.append(fac[-1] * i % mod)
        inv.append(-inv[mod % i] * (mod // i) % mod)
        finv.append(finv[-1] * inv[-1] % mod)


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

init(10**5+10)
N = int(input())
M = int(input())
ans = pow(2,N,mod)
for i in range(M):
    ans = (ans-com(N,i,mod))%mod
print(ans)
0