結果

問題 No.2130 分配方法の数え上げ mod 998244353
ユーザー qibqib
提出日時 2023-02-02 19:57:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 61,384 KB
最終ジャッジ日時 2024-07-02 06:59:25
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,140 KB
testcase_01 AC 37 ms
52,952 KB
testcase_02 AC 38 ms
52,580 KB
testcase_03 WA -
testcase_04 AC 35 ms
52,428 KB
testcase_05 AC 36 ms
51,952 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 35 ms
53,240 KB
testcase_09 AC 35 ms
51,936 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 35 ms
52,144 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
52,780 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 36 ms
51,628 KB
testcase_29 WA -
testcase_30 AC 37 ms
52,064 KB
testcase_31 AC 35 ms
52,372 KB
testcase_32 AC 35 ms
52,200 KB
testcase_33 WA -
testcase_34 AC 35 ms
52,856 KB
testcase_35 AC 35 ms
52,016 KB
testcase_36 AC 35 ms
52,140 KB
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
m = int(input())

if m > n:
  print("0")
  exit()

ans = pow(2, n, MOD)
cnt = 1
for r in range(m):
  ans = (ans - cnt) % MOD
  cnt = (cnt * (n + 1 - r)) % MOD
  cnt = (cnt * pow(r, MOD - 2, MOD)) % MOD

print(ans)
0