結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,220 KB
testcase_01 AC 31 ms
52,836 KB
testcase_02 AC 31 ms
51,888 KB
testcase_03 AC 32 ms
51,952 KB
testcase_04 AC 33 ms
52,008 KB
testcase_05 AC 32 ms
52,756 KB
testcase_06 AC 33 ms
52,752 KB
testcase_07 AC 32 ms
52,300 KB
testcase_08 AC 33 ms
51,940 KB
testcase_09 AC 36 ms
51,812 KB
testcase_10 AC 34 ms
52,288 KB
testcase_11 AC 33 ms
52,360 KB
testcase_12 AC 33 ms
53,292 KB
testcase_13 AC 32 ms
53,172 KB
testcase_14 AC 33 ms
53,024 KB
testcase_15 AC 33 ms
52,760 KB
testcase_16 AC 36 ms
52,628 KB
testcase_17 AC 43 ms
60,916 KB
testcase_18 AC 49 ms
59,804 KB
testcase_19 AC 47 ms
60,752 KB
testcase_20 AC 35 ms
52,956 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
  val %= mod
  fact = fact * (N - i) % mod
  inv = inv * (i + 1) % mod
print((base - val) % mod)
  
0