結果

問題 No.1989 Pairing Multiset
ユーザー nephrologistnephrologist
提出日時 2022-06-25 09:48:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 59,784 KB
最終ジャッジ日時 2024-11-14 04:53:04
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
58,344 KB
testcase_01 AC 56 ms
58,692 KB
testcase_02 AC 56 ms
58,164 KB
testcase_03 AC 56 ms
59,292 KB
testcase_04 AC 38 ms
52,212 KB
testcase_05 AC 56 ms
59,784 KB
testcase_06 AC 38 ms
52,492 KB
testcase_07 AC 38 ms
52,500 KB
testcase_08 AC 55 ms
58,652 KB
testcase_09 AC 42 ms
58,516 KB
testcase_10 AC 47 ms
57,928 KB
testcase_11 AC 50 ms
57,948 KB
testcase_12 AC 51 ms
58,164 KB
testcase_13 AC 56 ms
58,908 KB
testcase_14 AC 43 ms
58,864 KB
testcase_15 AC 44 ms
58,760 KB
testcase_16 AC 53 ms
59,404 KB
testcase_17 AC 46 ms
58,888 KB
testcase_18 AC 38 ms
52,336 KB
testcase_19 AC 44 ms
57,924 KB
testcase_20 AC 56 ms
58,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

n, m = map(int, input().split())
mod = 998244353
bunbo = 1
bunshi = 1
nn = n % mod
mm = m % mod
# ans = n * binom(2 * n + m, 2 * n + 1)
for i in range(2 * n + 1):
    bunbo *= (2 * nn + mm - i) % mod
    bunbo %= mod
    bunshi *= 1 + i
    bunshi %= mod
ans = bunbo * pow(bunshi, mod - 2, mod) % mod * n % mod
print(ans)
0