結果

問題 No.1989 Pairing Multiset
ユーザー ygd.ygd.
提出日時 2022-06-25 09:41:19
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 830 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 75,680 KB
最終ジャッジ日時 2024-11-14 04:26:53
合計ジャッジ時間 26,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 37 ms
52,192 KB
testcase_05 TLE -
testcase_06 AC 38 ms
52,272 KB
testcase_07 AC 37 ms
52,344 KB
testcase_08 AC 1,963 ms
75,292 KB
testcase_09 AC 118 ms
67,880 KB
testcase_10 AC 722 ms
75,216 KB
testcase_11 AC 1,293 ms
75,260 KB
testcase_12 AC 1,406 ms
75,308 KB
testcase_13 TLE -
testcase_14 AC 369 ms
74,920 KB
testcase_15 AC 319 ms
75,300 KB
testcase_16 AC 1,750 ms
75,548 KB
testcase_17 AC 186 ms
73,796 KB
testcase_18 AC 38 ms
52,680 KB
testcase_19 AC 298 ms
75,004 KB
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]




def main():
    N,M = map(int,input().split())
    #広義単調増加数列(=多重集合)を経路数に帰着する。
    cmb = N
    n = 2*N+M
    k = 2*N+1
    for i in range(k):
        temp = (n-i) * pow(i+1,MOD-2,MOD)
        cmb *= temp
        cmb %= MOD
    print(cmb%MOD)



if __name__ == '__main__':
    main()
0