結果
問題 | No.2130 分配方法の数え上げ mod 998244353 |
ユーザー | achapi |
提出日時 | 2022-11-25 21:25:57 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 440 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 246,400 KB |
最終ジャッジ日時 | 2024-10-02 03:57:16 |
合計ジャッジ時間 | 14,295 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 325 ms
246,144 KB |
testcase_01 | AC | 319 ms
245,888 KB |
testcase_02 | AC | 315 ms
246,144 KB |
testcase_03 | AC | 323 ms
246,016 KB |
testcase_04 | AC | 328 ms
246,144 KB |
testcase_05 | AC | 322 ms
245,888 KB |
testcase_06 | AC | 317 ms
245,880 KB |
testcase_07 | AC | 324 ms
246,400 KB |
testcase_08 | AC | 327 ms
246,272 KB |
testcase_09 | AC | 323 ms
246,016 KB |
testcase_10 | AC | 326 ms
246,016 KB |
testcase_11 | AC | 318 ms
245,888 KB |
testcase_12 | AC | 320 ms
246,016 KB |
testcase_13 | AC | 322 ms
245,760 KB |
testcase_14 | AC | 327 ms
246,016 KB |
testcase_15 | AC | 320 ms
245,888 KB |
testcase_16 | AC | 324 ms
246,016 KB |
testcase_17 | AC | 325 ms
246,144 KB |
testcase_18 | AC | 327 ms
246,144 KB |
testcase_19 | AC | 322 ms
246,144 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 | - |
ソースコード
n=int(input()) m=int(input()) mod=998244353 def cmb(n,r,p): if(r<0)or(n<r):return 0 return fact[n]*factinv[min(r,n-r)]*factinv[n-min(r,n-r)]%p fact,factinv,inv=[1,1],[1,1],[0,1] for i in range(2,10**6): fact.append((fact[-1]*i)%mod) inv.append((-inv[mod % i]*(mod//i))%mod) factinv.append((factinv[-1]*inv[-1])%mod) if n<m:exit(print(0)) ans=pow(2,n,mod) for i in range(m): ans-=cmb(n,i,mod) ans%=mod print(ans)