結果

問題 No.2130 分配方法の数え上げ mod 998244353
ユーザー tassei903tassei903
提出日時 2022-11-26 00:30:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 75,424 KB
最終ジャッジ日時 2024-10-02 06:45:10
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,348 KB
testcase_01 AC 35 ms
52,268 KB
testcase_02 AC 35 ms
53,196 KB
testcase_03 AC 36 ms
53,008 KB
testcase_04 AC 36 ms
52,748 KB
testcase_05 AC 35 ms
53,152 KB
testcase_06 AC 35 ms
52,676 KB
testcase_07 AC 36 ms
52,528 KB
testcase_08 AC 35 ms
52,896 KB
testcase_09 AC 38 ms
52,328 KB
testcase_10 AC 36 ms
52,160 KB
testcase_11 AC 36 ms
52,264 KB
testcase_12 AC 36 ms
52,336 KB
testcase_13 AC 36 ms
53,912 KB
testcase_14 AC 37 ms
52,468 KB
testcase_15 AC 38 ms
53,008 KB
testcase_16 AC 36 ms
52,196 KB
testcase_17 AC 45 ms
60,864 KB
testcase_18 AC 54 ms
62,588 KB
testcase_19 AC 51 ms
62,032 KB
testcase_20 AC 35 ms
52,600 KB
testcase_21 AC 55 ms
63,376 KB
testcase_22 AC 37 ms
52,064 KB
testcase_23 AC 52 ms
61,676 KB
testcase_24 AC 36 ms
52,188 KB
testcase_25 AC 53 ms
62,792 KB
testcase_26 AC 36 ms
53,116 KB
testcase_27 AC 151 ms
75,424 KB
testcase_28 AC 36 ms
52,620 KB
testcase_29 AC 152 ms
75,284 KB
testcase_30 AC 36 ms
53,424 KB
testcase_31 AC 35 ms
53,148 KB
testcase_32 AC 36 ms
53,352 KB
testcase_33 AC 36 ms
52,532 KB
testcase_34 AC 37 ms
53,356 KB
testcase_35 AC 37 ms
53,200 KB
testcase_36 AC 36 ms
51,940 KB
testcase_37 AC 37 ms
52,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = ni()
m = ni()
mod = 998244353
ans = 0
z = 1
for i in range(m):
    ans += z
    ans %= mod
    z *= n - i
    z *= pow(i + 1, mod-2, mod)
    z %= mod

print((pow(2, n,mod)-ans)%mod)
0