結果

問題 No.2299 Antitypoglycemia
ユーザー H20H20
提出日時 2023-05-19 09:15:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 904 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 74,268 KB
最終ジャッジ日時 2024-12-17 18:15:19
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,964 KB
testcase_01 AC 37 ms
52,272 KB
testcase_02 AC 35 ms
52,292 KB
testcase_03 AC 47 ms
68,108 KB
testcase_04 AC 46 ms
68,436 KB
testcase_05 AC 42 ms
64,032 KB
testcase_06 AC 45 ms
67,628 KB
testcase_07 AC 39 ms
61,100 KB
testcase_08 AC 44 ms
67,440 KB
testcase_09 AC 45 ms
68,768 KB
testcase_10 AC 41 ms
61,708 KB
testcase_11 AC 41 ms
63,340 KB
testcase_12 AC 46 ms
68,924 KB
testcase_13 AC 50 ms
74,144 KB
testcase_14 AC 40 ms
60,376 KB
testcase_15 AC 39 ms
59,416 KB
testcase_16 AC 42 ms
62,728 KB
testcase_17 AC 41 ms
60,408 KB
testcase_18 AC 51 ms
72,660 KB
testcase_19 AC 51 ms
72,936 KB
testcase_20 AC 50 ms
73,184 KB
testcase_21 AC 50 ms
74,268 KB
testcase_22 AC 49 ms
73,444 KB
testcase_23 AC 34 ms
52,288 KB
testcase_24 AC 35 ms
53,408 KB
testcase_25 AC 34 ms
52,876 KB
testcase_26 AC 36 ms
52,000 KB
testcase_27 AC 36 ms
52,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B = map(int,input().split())
P = [1]
mod = 998244353
for i in range(1,N+1):
    P.append(P[-1]*i%mod)
if A==B:
    print(P[N]-P[N-1]*2)
else:
    print((P[N]-P[N-1]*2+P[N-2])%mod)
0