結果

問題 No.1989 Pairing Multiset
ユーザー ニックネームニックネーム
提出日時 2022-06-25 00:35:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,905 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 59,648 KB
最終ジャッジ日時 2024-11-08 19:32:37
合計ジャッジ時間 11,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,896 ms
59,392 KB
testcase_01 AC 1,898 ms
59,264 KB
testcase_02 AC 1,905 ms
59,264 KB
testcase_03 AC 1,891 ms
59,136 KB
testcase_04 AC 41 ms
51,456 KB
testcase_05 AC 1,882 ms
59,136 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 1,790 ms
59,392 KB
testcase_09 AC 116 ms
59,648 KB
testcase_10 AC 673 ms
59,136 KB
testcase_11 AC 1,183 ms
59,392 KB
testcase_12 AC 1,285 ms
59,392 KB
testcase_13 AC 1,861 ms
59,520 KB
testcase_14 AC 350 ms
59,648 KB
testcase_15 AC 297 ms
59,520 KB
testcase_16 AC 1,603 ms
59,392 KB
testcase_17 AC 179 ms
59,392 KB
testcase_18 AC 42 ms
51,712 KB
testcase_19 AC 278 ms
59,392 KB
testcase_20 AC 1,879 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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