結果

問題 No.2904 Distinct Multisets in a Way
ユーザー tassei903tassei903
提出日時 2024-09-27 21:40:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,712 KB
最終ジャッジ日時 2024-09-27 21:40:38
合計ジャッジ時間 5,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
89,984 KB
testcase_01 AC 100 ms
95,232 KB
testcase_02 AC 94 ms
89,472 KB
testcase_03 AC 108 ms
95,232 KB
testcase_04 AC 90 ms
90,496 KB
testcase_05 AC 86 ms
90,112 KB
testcase_06 AC 85 ms
90,112 KB
testcase_07 AC 93 ms
89,856 KB
testcase_08 AC 86 ms
89,984 KB
testcase_09 AC 85 ms
89,984 KB
testcase_10 AC 88 ms
90,112 KB
testcase_11 AC 91 ms
90,624 KB
testcase_12 AC 90 ms
90,880 KB
testcase_13 AC 91 ms
89,600 KB
testcase_14 AC 89 ms
91,392 KB
testcase_15 AC 85 ms
90,112 KB
testcase_16 AC 87 ms
90,368 KB
testcase_17 AC 85 ms
90,240 KB
testcase_18 AC 85 ms
90,240 KB
testcase_19 AC 90 ms
90,368 KB
testcase_20 AC 86 ms
89,728 KB
testcase_21 AC 89 ms
90,880 KB
testcase_22 AC 86 ms
90,496 KB
testcase_23 AC 86 ms
89,728 KB
testcase_24 AC 98 ms
94,848 KB
testcase_25 AC 101 ms
95,232 KB
testcase_26 AC 96 ms
96,128 KB
testcase_27 AC 104 ms
99,712 KB
testcase_28 AC 100 ms
94,848 KB
testcase_29 AC 102 ms
98,688 KB
testcase_30 AC 110 ms
94,592 KB
testcase_31 AC 102 ms
94,848 KB
testcase_32 AC 98 ms
95,748 KB
testcase_33 AC 99 ms
96,000 KB
testcase_34 AC 98 ms
96,384 KB
testcase_35 AC 99 ms
95,060 KB
testcase_36 AC 101 ms
94,848 KB
testcase_37 AC 100 ms
95,104 KB
testcase_38 AC 96 ms
95,488 KB
testcase_39 AC 98 ms
95,360 KB
testcase_40 AC 126 ms
94,848 KB
testcase_41 AC 98 ms
94,848 KB
testcase_42 AC 98 ms
94,716 KB
testcase_43 AC 101 ms
95,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 998244353


nn = 2 * 10 ** 6 + 1
fact = [1] * nn
for i in range(nn - 1):
    fact[i + 1] = fact[i] * (i + 1) % mod
invfact = [1] * nn
invfact[nn - 1] = pow(fact[nn - 1], mod - 2, mod)
for i in range(nn - 1)[::-1]:
    invfact[i] = invfact[i + 1] * (i + 1) % mod
 
def binom(x, y):
    if x < 0 or y < 0 or x - y < 0:
        return 0
    return fact[x] * invfact[y] % mod * invfact[x - y] % mod
n = ni()

ans = 0
for k in range(n + 1):
    ans += binom(n, k) * binom(k, 2 * k - n) % mod
    ans %= mod

print((ans - 1) * pow(2, mod-2, mod) % mod)
0