結果

問題 No.2511 Mountain Sequence
ユーザー nikoro256nikoro256
提出日時 2024-01-27 01:28:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 187,836 KB
最終ジャッジ日時 2024-09-28 09:26:04
合計ジャッジ時間 7,249 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
173,696 KB
testcase_01 AC 140 ms
173,696 KB
testcase_02 AC 163 ms
187,520 KB
testcase_03 AC 144 ms
174,720 KB
testcase_04 AC 152 ms
182,400 KB
testcase_05 AC 151 ms
179,456 KB
testcase_06 AC 168 ms
187,520 KB
testcase_07 AC 151 ms
184,320 KB
testcase_08 AC 149 ms
177,408 KB
testcase_09 AC 145 ms
174,464 KB
testcase_10 AC 165 ms
187,520 KB
testcase_11 AC 173 ms
187,836 KB
testcase_12 AC 138 ms
173,824 KB
testcase_13 AC 164 ms
187,136 KB
testcase_14 AC 171 ms
187,520 KB
testcase_15 AC 171 ms
187,648 KB
testcase_16 AC 174 ms
187,392 KB
testcase_17 AC 167 ms
187,520 KB
testcase_18 AC 171 ms
187,520 KB
testcase_19 AC 168 ms
187,648 KB
testcase_20 AC 162 ms
187,776 KB
testcase_21 AC 168 ms
187,136 KB
testcase_22 AC 171 ms
187,520 KB
testcase_23 AC 152 ms
181,888 KB
testcase_24 AC 153 ms
182,784 KB
testcase_25 AC 172 ms
187,136 KB
testcase_26 AC 151 ms
180,096 KB
testcase_27 AC 163 ms
187,520 KB
testcase_28 AC 145 ms
173,824 KB
testcase_29 AC 168 ms
187,392 KB
testcase_30 AC 169 ms
187,352 KB
testcase_31 AC 169 ms
187,264 KB
testcase_32 AC 171 ms
187,648 KB
testcase_33 AC 176 ms
187,264 KB
testcase_34 AC 169 ms
187,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r, p):
    if (r < 0) or (n < r):
        return 0
    r = min(r, n - r)
    return fact[n] * factinv[r] * factinv[n-r] % p

p=998244353
N = 5*10**5  # N は必要分だけ用意する
fact = [1, 1]  # fact[n] = (n! mod p)
factinv = [1, 1]  # factinv[n] = ((n!)^(-1) mod p)
inv = [0, 1]  # factinv 計算用S
 
for i in range(2, N + 1):
    fact.append((fact[-1] * i) % p)
    inv.append((-inv[p % i] * (p // i)) % p)
    factinv.append((factinv[-1] * inv[-1]) % p)

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