結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 AC 30 ms
21,504 KB
testcase_02 AC 30 ms
17,572 KB
testcase_03 AC 30 ms
17,700 KB
testcase_04 AC 31 ms
17,568 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
17,700 KB
testcase_07 AC 32 ms
17,572 KB
testcase_08 AC 29 ms
17,572 KB
testcase_09 AC 30 ms
17,572 KB
testcase_10 AC 33 ms
17,572 KB
testcase_11 AC 30 ms
21,376 KB
testcase_12 AC 30 ms
17,696 KB
testcase_13 AC 41 ms
17,572 KB
testcase_14 AC 41 ms
17,568 KB
testcase_15 AC 33 ms
21,376 KB
testcase_16 AC 188 ms
17,572 KB
testcase_17 TLE -
testcase_18 AC 150 ms
17,572 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

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