結果

問題 No.2299 Antitypoglycemia
ユーザー 310icecrystal310icecrystal
提出日時 2023-05-13 03:23:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 74,540 KB
最終ジャッジ日時 2024-11-28 23:11:41
合計ジャッジ時間 2,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,372 KB
testcase_01 AC 38 ms
53,232 KB
testcase_02 AC 38 ms
52,496 KB
testcase_03 AC 49 ms
66,884 KB
testcase_04 AC 51 ms
68,196 KB
testcase_05 AC 46 ms
63,796 KB
testcase_06 AC 49 ms
67,004 KB
testcase_07 AC 43 ms
60,564 KB
testcase_08 AC 49 ms
67,404 KB
testcase_09 AC 50 ms
68,256 KB
testcase_10 AC 44 ms
62,392 KB
testcase_11 AC 44 ms
61,764 KB
testcase_12 AC 51 ms
69,956 KB
testcase_13 AC 54 ms
72,384 KB
testcase_14 AC 43 ms
59,384 KB
testcase_15 AC 44 ms
59,388 KB
testcase_16 AC 45 ms
62,492 KB
testcase_17 AC 45 ms
61,308 KB
testcase_18 AC 56 ms
73,640 KB
testcase_19 AC 55 ms
73,572 KB
testcase_20 AC 57 ms
73,880 KB
testcase_21 AC 56 ms
74,540 KB
testcase_22 AC 56 ms
73,216 KB
testcase_23 AC 40 ms
51,940 KB
testcase_24 AC 40 ms
52,280 KB
testcase_25 AC 40 ms
52,644 KB
testcase_26 AC 39 ms
52,304 KB
testcase_27 AC 39 ms
52,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 998244353
factorial_li_mod = [1]
for i in range(1,N+1):
    factorial_li_mod.append((factorial_li_mod[-1]*i)%MOD)

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