結果

問題 No.1885 Flat Permutation
ユーザー rlangevinrlangevin
提出日時 2023-06-02 08:59:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-12-28 15:29:11
合計ジャッジ時間 13,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
26,496 KB
testcase_01 AC 205 ms
26,240 KB
testcase_02 AC 276 ms
26,240 KB
testcase_03 AC 245 ms
26,368 KB
testcase_04 AC 206 ms
26,368 KB
testcase_05 AC 205 ms
26,368 KB
testcase_06 AC 215 ms
26,368 KB
testcase_07 AC 222 ms
26,368 KB
testcase_08 AC 239 ms
26,368 KB
testcase_09 AC 204 ms
26,368 KB
testcase_10 AC 204 ms
26,240 KB
testcase_11 AC 206 ms
26,240 KB
testcase_12 AC 204 ms
26,368 KB
testcase_13 AC 226 ms
26,368 KB
testcase_14 AC 204 ms
26,496 KB
testcase_15 AC 206 ms
26,240 KB
testcase_16 AC 235 ms
26,368 KB
testcase_17 AC 211 ms
26,240 KB
testcase_18 AC 200 ms
26,240 KB
testcase_19 AC 299 ms
26,368 KB
testcase_20 AC 305 ms
26,240 KB
testcase_21 AC 272 ms
26,496 KB
testcase_22 AC 287 ms
26,240 KB
testcase_23 AC 209 ms
26,496 KB
testcase_24 AC 200 ms
26,496 KB
testcase_25 AC 209 ms
26,496 KB
testcase_26 AC 213 ms
26,240 KB
testcase_27 AC 274 ms
26,368 KB
testcase_28 AC 277 ms
26,368 KB
testcase_29 AC 271 ms
26,368 KB
testcase_30 AC 292 ms
26,496 KB
testcase_31 AC 282 ms
26,368 KB
testcase_32 AC 213 ms
26,368 KB
testcase_33 AC 230 ms
26,240 KB
testcase_34 AC 201 ms
26,496 KB
testcase_35 AC 302 ms
26,240 KB
testcase_36 AC 278 ms
26,368 KB
testcase_37 AC 203 ms
26,496 KB
testcase_38 AC 205 ms
26,368 KB
testcase_39 AC 201 ms
26,240 KB
testcase_40 AC 224 ms
26,368 KB
testcase_41 AC 240 ms
26,240 KB
testcase_42 AC 235 ms
26,368 KB
testcase_43 AC 278 ms
26,368 KB
testcase_44 AC 310 ms
26,496 KB
testcase_45 AC 294 ms
26,496 KB
testcase_46 AC 277 ms
26,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
if X > Y:
    X, Y = Y, X
if X != 1:
    X += 1
if Y != N:
    Y -= 1
M = Y - X

mod = 998244353
n = 202020

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

ans = 0
now = 0
while M >= 0:
    ans += comb(M + now, now)
    ans %= mod
    M -= 3
    now += 1
print(ans)
0