結果

問題 No.1989 Pairing Multiset
ユーザー titiatitia
提出日時 2022-09-20 03:37:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,895 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-06-01 16:41:38
合計ジャッジ時間 22,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,894 ms
59,296 KB
testcase_01 AC 1,895 ms
59,276 KB
testcase_02 AC 1,891 ms
60,528 KB
testcase_03 AC 1,888 ms
59,092 KB
testcase_04 AC 38 ms
51,752 KB
testcase_05 AC 37 ms
53,008 KB
testcase_06 AC 38 ms
53,172 KB
testcase_07 AC 36 ms
52,248 KB
testcase_08 AC 1,796 ms
59,976 KB
testcase_09 AC 111 ms
59,620 KB
testcase_10 AC 661 ms
60,424 KB
testcase_11 AC 1,184 ms
59,828 KB
testcase_12 AC 1,292 ms
59,352 KB
testcase_13 AC 1,837 ms
60,044 KB
testcase_14 AC 339 ms
60,800 KB
testcase_15 AC 290 ms
60,436 KB
testcase_16 AC 1,599 ms
59,708 KB
testcase_17 AC 174 ms
60,004 KB
testcase_18 AC 38 ms
52,888 KB
testcase_19 AC 273 ms
60,236 KB
testcase_20 AC 1,884 ms
60,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
mod=998244353

def Combi2(a,b):# aは大きいが、bは小さいとき
    if b>a:
        return 0
    ANS=1
    for i in range(min(b,a-b)):
        ANS=ANS*(a-i)%mod*pow(min(b,a-b)-i,mod-2,mod)%mod

    return ANS%mod

print(N*Combi2(2*N+M,2*N+1)%mod)
0