結果

問題 No.2130 分配方法の数え上げ mod 998244353
ユーザー H20H20
提出日時 2022-11-25 21:41:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 593 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 498,900 KB
最終ジャッジ日時 2024-10-02 04:18:32
合計ジャッジ時間 6,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,960 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 42 ms
52,224 KB
testcase_15 AC 41 ms
52,480 KB
testcase_16 AC 42 ms
53,120 KB
testcase_17 AC 53 ms
62,592 KB
testcase_18 AC 58 ms
64,768 KB
testcase_19 AC 69 ms
80,000 KB
testcase_20 AC 1,165 ms
318,380 KB
testcase_21 TLE -
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 #

#コンビネーション
def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod


N = int(input())
M = int(input())
mod = 998244353 #出力の制限
g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % mod )
    inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2.append( (g2[-1] * inverse[-1]) % mod )


ans = pow(2,N,mod)
for i in range(M):
    ans = (ans-cmb(N,i,mod))%mod
print(ans)
0