結果

問題 No.1885 Flat Permutation
ユーザー rlangevinrlangevin
提出日時 2023-06-02 08:54:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-06-08 21:53:03
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,312 KB
testcase_01 AC 48 ms
61,184 KB
testcase_02 AC 49 ms
61,312 KB
testcase_03 AC 55 ms
63,360 KB
testcase_04 AC 51 ms
61,568 KB
testcase_05 AC 53 ms
61,312 KB
testcase_06 AC 51 ms
61,312 KB
testcase_07 AC 51 ms
61,440 KB
testcase_08 AC 49 ms
61,312 KB
testcase_09 AC 49 ms
61,824 KB
testcase_10 AC 49 ms
61,568 KB
testcase_11 AC 48 ms
61,312 KB
testcase_12 AC 50 ms
61,440 KB
testcase_13 AC 49 ms
61,440 KB
testcase_14 AC 48 ms
61,440 KB
testcase_15 AC 48 ms
61,312 KB
testcase_16 AC 50 ms
61,312 KB
testcase_17 AC 49 ms
61,440 KB
testcase_18 AC 49 ms
61,312 KB
testcase_19 AC 63 ms
69,760 KB
testcase_20 AC 65 ms
69,760 KB
testcase_21 AC 63 ms
70,144 KB
testcase_22 AC 63 ms
69,376 KB
testcase_23 AC 47 ms
61,440 KB
testcase_24 AC 48 ms
61,440 KB
testcase_25 AC 48 ms
61,568 KB
testcase_26 AC 48 ms
61,568 KB
testcase_27 AC 61 ms
69,760 KB
testcase_28 AC 62 ms
70,016 KB
testcase_29 AC 62 ms
69,888 KB
testcase_30 AC 62 ms
70,016 KB
testcase_31 AC 61 ms
70,016 KB
testcase_32 AC 49 ms
61,312 KB
testcase_33 AC 49 ms
61,440 KB
testcase_34 AC 49 ms
61,312 KB
testcase_35 AC 63 ms
69,760 KB
testcase_36 AC 60 ms
69,760 KB
testcase_37 AC 48 ms
61,312 KB
testcase_38 AC 49 ms
61,440 KB
testcase_39 AC 49 ms
61,440 KB
testcase_40 AC 55 ms
64,640 KB
testcase_41 AC 57 ms
66,176 KB
testcase_42 AC 54 ms
63,872 KB
testcase_43 AC 62 ms
69,760 KB
testcase_44 AC 62 ms
69,888 KB
testcase_45 AC 63 ms
70,144 KB
testcase_46 AC 63 ms
70,016 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