結果

問題 No.2130 分配方法の数え上げ mod 998244353
ユーザー hir355hir355
提出日時 2022-11-26 00:08:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 75,724 KB
最終ジャッジ日時 2024-10-02 06:29:38
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,112 KB
testcase_01 AC 36 ms
52,284 KB
testcase_02 AC 35 ms
52,364 KB
testcase_03 AC 36 ms
52,512 KB
testcase_04 AC 35 ms
52,864 KB
testcase_05 AC 35 ms
52,656 KB
testcase_06 AC 36 ms
52,440 KB
testcase_07 WA -
testcase_08 AC 40 ms
52,436 KB
testcase_09 AC 37 ms
52,448 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
53,660 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
53,548 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 37 ms
52,472 KB
testcase_29 WA -
testcase_30 AC 36 ms
52,744 KB
testcase_31 AC 36 ms
52,364 KB
testcase_32 AC 35 ms
52,328 KB
testcase_33 AC 35 ms
52,704 KB
testcase_34 AC 36 ms
52,408 KB
testcase_35 AC 36 ms
53,468 KB
testcase_36 AC 37 ms
52,664 KB
testcase_37 AC 36 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
m = int(input())
if n < m:
    print(0)
    exit(0)
ans = pow(2, n, MOD)
c = 1
for i in range(m):
    ans -= c
    c *= n
    c *= pow(i + 1, MOD - 2, MOD)
    c %= MOD
print(ans % MOD)
0