結果

問題 No.2130 分配方法の数え上げ mod 998244353
ユーザー ninja-kidninja-kid
提出日時 2022-11-28 16:08:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 61,896 KB
最終ジャッジ日時 2024-10-05 14:45:38
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,224 KB
testcase_01 AC 36 ms
52,448 KB
testcase_02 AC 36 ms
52,188 KB
testcase_03 AC 35 ms
51,892 KB
testcase_04 AC 35 ms
52,556 KB
testcase_05 AC 36 ms
51,688 KB
testcase_06 AC 36 ms
53,160 KB
testcase_07 AC 35 ms
52,152 KB
testcase_08 AC 35 ms
53,368 KB
testcase_09 AC 34 ms
52,376 KB
testcase_10 AC 35 ms
52,088 KB
testcase_11 AC 38 ms
52,024 KB
testcase_12 AC 36 ms
52,756 KB
testcase_13 AC 36 ms
52,748 KB
testcase_14 AC 37 ms
51,624 KB
testcase_15 AC 35 ms
52,300 KB
testcase_16 AC 35 ms
53,828 KB
testcase_17 AC 44 ms
59,680 KB
testcase_18 AC 50 ms
60,460 KB
testcase_19 AC 49 ms
59,740 KB
testcase_20 AC 35 ms
53,304 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
if N < M:
  print(0)
  exit()
if N == M:
  print(1)
  exit()
mod = 998244353

N %= mod
base = pow(2, N, mod)
val = 0
fact = 1
inv = 1
for i in range(M):
  val += fact * pow(inv, mod - 2, mod) % mod
  fact = fact * (N - i) % mod
  inv = inv * (i + 1) % mod
print((base - val) % mod)
  
0