結果

問題 No.2299 Antitypoglycemia
ユーザー FromBooskaFromBooska
提出日時 2023-10-21 11:30:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-09-21 12:43:26
合計ジャッジ時間 4,773 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 172 ms
78,592 KB
testcase_04 AC 173 ms
80,768 KB
testcase_05 AC 121 ms
71,424 KB
testcase_06 AC 177 ms
78,268 KB
testcase_07 AC 68 ms
64,128 KB
testcase_08 AC 162 ms
78,084 KB
testcase_09 AC 179 ms
80,896 KB
testcase_10 AC 89 ms
67,200 KB
testcase_11 AC 93 ms
67,968 KB
testcase_12 AC 184 ms
80,896 KB
testcase_13 AC 233 ms
89,600 KB
testcase_14 AC 58 ms
62,336 KB
testcase_15 AC 57 ms
62,208 KB
testcase_16 AC 102 ms
68,864 KB
testcase_17 AC 76 ms
65,152 KB
testcase_18 AC 242 ms
89,728 KB
testcase_19 AC 240 ms
89,728 KB
testcase_20 AC 238 ms
89,856 KB
testcase_21 AC 245 ms
89,728 KB
testcase_22 AC 238 ms
89,600 KB
testcase_23 AC 35 ms
52,352 KB
testcase_24 AC 35 ms
52,480 KB
testcase_25 AC 33 ms
52,096 KB
testcase_26 AC 34 ms
52,096 KB
testcase_27 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 包除原理だな
# if A!=B, total - (N-1)!*2 + (N-2)!
# if A==B, (N-2)*(N-1)!

N, A, B = map(int, input().split())
mod = 998244353

# nCrメモ化パッケージ
factorial = [1] #0分
inverse = [1] #0分
for i in range(1, N+1):
    factorial.append(factorial[-1]*i%mod)
    inverse.append(pow(factorial[-1], mod-2, mod))
    
def nCr_fast(N, R, MOD):
    if N < R or R < 0:
        return 0
    elif R == 0 or R == N:
        return 1
    return factorial[N]*inverse[R]*inverse[N-R]%MOD

if A!=B:
    ans = factorial[N]
    ans -= factorial[N-1]*2
    ans += factorial[N-2]
    ans %= mod
elif A==B:
    ans = (N-2)*factorial[N-1]
    ans %= mod
print(ans)
0