結果

問題 No.1989 Pairing Multiset
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-06-25 09:21:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 59,892 KB
最終ジャッジ日時 2024-11-14 04:00:29
合計ジャッジ時間 2,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
58,680 KB
testcase_01 AC 59 ms
58,932 KB
testcase_02 AC 55 ms
58,560 KB
testcase_03 AC 54 ms
58,004 KB
testcase_04 AC 34 ms
52,636 KB
testcase_05 AC 54 ms
58,416 KB
testcase_06 AC 37 ms
53,368 KB
testcase_07 AC 37 ms
52,020 KB
testcase_08 AC 54 ms
58,340 KB
testcase_09 AC 40 ms
59,408 KB
testcase_10 AC 45 ms
59,380 KB
testcase_11 AC 49 ms
58,296 KB
testcase_12 AC 50 ms
58,840 KB
testcase_13 AC 54 ms
58,300 KB
testcase_14 AC 42 ms
59,412 KB
testcase_15 AC 43 ms
58,564 KB
testcase_16 AC 53 ms
58,632 KB
testcase_17 AC 42 ms
59,104 KB
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 41 ms
58,456 KB
testcase_20 AC 55 ms
59,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
mod = 998244353

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