結果

問題 No.2511 Mountain Sequence
ユーザー rlangevinrlangevin
提出日時 2024-02-15 12:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 85,140 KB
最終ジャッジ日時 2024-09-28 19:04:24
合計ジャッジ時間 3,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
66,308 KB
testcase_01 AC 50 ms
66,764 KB
testcase_02 AC 65 ms
81,904 KB
testcase_03 AC 48 ms
68,176 KB
testcase_04 AC 56 ms
74,380 KB
testcase_05 AC 57 ms
75,200 KB
testcase_06 AC 62 ms
82,024 KB
testcase_07 AC 60 ms
77,768 KB
testcase_08 AC 57 ms
71,396 KB
testcase_09 AC 51 ms
68,880 KB
testcase_10 AC 62 ms
79,020 KB
testcase_11 AC 72 ms
84,400 KB
testcase_12 AC 48 ms
66,884 KB
testcase_13 AC 65 ms
81,724 KB
testcase_14 AC 71 ms
85,140 KB
testcase_15 AC 71 ms
84,604 KB
testcase_16 AC 72 ms
84,128 KB
testcase_17 AC 66 ms
83,916 KB
testcase_18 AC 61 ms
81,488 KB
testcase_19 AC 63 ms
81,528 KB
testcase_20 AC 60 ms
80,192 KB
testcase_21 AC 66 ms
84,176 KB
testcase_22 AC 61 ms
81,072 KB
testcase_23 AC 56 ms
74,868 KB
testcase_24 AC 56 ms
75,968 KB
testcase_25 AC 70 ms
83,276 KB
testcase_26 AC 54 ms
74,676 KB
testcase_27 AC 60 ms
81,948 KB
testcase_28 AC 47 ms
66,608 KB
testcase_29 AC 60 ms
80,384 KB
testcase_30 AC 63 ms
80,492 KB
testcase_31 AC 61 ms
80,832 KB
testcase_32 AC 64 ms
81,864 KB
testcase_33 AC 70 ms
85,120 KB
testcase_34 AC 62 ms
81,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = 505050
mod = 998244353
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


N, M = map(int, input().split())
ans = 0
for m in range(M + 1):
    ans += comb(2 * m - 2, N - 1)
    ans %= mod
    
print(ans)
0