結果

問題 No.2130 分配方法の数え上げ mod 998244353
ユーザー T.ST.S
提出日時 2024-05-25 23:18:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 750 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,824 KB
最終ジャッジ日時 2024-05-25 23:19:00
合計ジャッジ時間 7,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,824 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,880 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,880 KB
testcase_12 AC 25 ms
10,880 KB
testcase_13 AC 34 ms
10,752 KB
testcase_14 AC 34 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 181 ms
10,752 KB
testcase_17 TLE -
testcase_18 AC 134 ms
10,752 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

def mod_pow(x, n, mod):
    result = 1
    while n > 0:
        if n & 1:
            result = result * x % mod
        x = x * x % mod
        n >>= 1
    return result

def mod_inv(x, mod):
    return mod_pow(x, mod - 2, mod)

def cmb(n, r, mod):
    if n < r:
        return 0
    if r == 0:
        return 1
    numerator = denominator = 1
    for i in range(r):
        numerator = numerator * (n - i) % mod
        denominator = denominator * (i + 1) % mod
    return numerator * mod_inv(denominator, mod) % mod

def count_ways(N, M, mod):
    result = 0
    for i in range(N - M + 1):
        result += cmb(N, M + i, mod)
        result %= mod
    return result

N = int(input())
M = int(input())

print(count_ways(N, M, mod))
0