結果

問題 No.2299 Antitypoglycemia
ユーザー koarakko5555koarakko5555
提出日時 2023-05-12 21:44:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 819 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,608 KB
最終ジャッジ日時 2024-11-28 17:49:26
合計ジャッジ時間 8,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 402 ms
88,904 KB
testcase_04 AC 400 ms
89,344 KB
testcase_05 AC 189 ms
79,744 KB
testcase_06 AC 405 ms
88,960 KB
testcase_07 AC 72 ms
75,660 KB
testcase_08 AC 346 ms
87,808 KB
testcase_09 AC 418 ms
89,728 KB
testcase_10 AC 120 ms
76,712 KB
testcase_11 AC 128 ms
76,672 KB
testcase_12 AC 463 ms
92,288 KB
testcase_13 AC 780 ms
110,076 KB
testcase_14 AC 53 ms
74,752 KB
testcase_15 AC 54 ms
74,880 KB
testcase_16 AC 136 ms
77,440 KB
testcase_17 AC 82 ms
75,392 KB
testcase_18 AC 558 ms
99,584 KB
testcase_19 AC 571 ms
99,712 KB
testcase_20 AC 819 ms
112,608 KB
testcase_21 AC 816 ms
112,512 KB
testcase_22 AC 579 ms
99,968 KB
testcase_23 AC 34 ms
51,712 KB
testcase_24 AC 33 ms
52,224 KB
testcase_25 AC 33 ms
52,096 KB
testcase_26 AC 33 ms
51,840 KB
testcase_27 AC 33 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**5)
import math

def re_factorial(n):
    if n < 2:
        return 1
    return n * re_factorial(n-1)

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

#全体-Aのとき-Bのとき+AかつBのとき

#全体
#zentai = re_factorial(N)
zentai = math.factorial(N)

#Aのとき
#a = re_factorial(N-1)
a = math.factorial(N-1)
b = a
#Bのとき
#b = re_factorial(N-1)

#AかつBのとき
ab = 0
if A!=B:
    ab = math.factorial(N-2)

#print(zentai, a, b, ab)
ans = zentai - a - b + ab
print(ans%mod)
0