結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,560 KB
testcase_01 AC 38 ms
53,344 KB
testcase_02 AC 38 ms
52,420 KB
testcase_03 AC 50 ms
67,756 KB
testcase_04 AC 49 ms
68,436 KB
testcase_05 AC 45 ms
63,924 KB
testcase_06 AC 49 ms
68,508 KB
testcase_07 AC 45 ms
61,400 KB
testcase_08 AC 50 ms
68,888 KB
testcase_09 AC 50 ms
69,112 KB
testcase_10 AC 45 ms
62,388 KB
testcase_11 AC 44 ms
61,880 KB
testcase_12 AC 49 ms
68,848 KB
testcase_13 AC 53 ms
73,260 KB
testcase_14 AC 42 ms
59,980 KB
testcase_15 AC 42 ms
60,036 KB
testcase_16 AC 44 ms
63,012 KB
testcase_17 AC 43 ms
60,704 KB
testcase_18 AC 53 ms
73,120 KB
testcase_19 AC 54 ms
73,660 KB
testcase_20 AC 53 ms
73,968 KB
testcase_21 AC 53 ms
73,408 KB
testcase_22 AC 52 ms
73,572 KB
testcase_23 AC 38 ms
52,304 KB
testcase_24 AC 40 ms
52,272 KB
testcase_25 AC 39 ms
53,524 KB
testcase_26 AC 39 ms
53,788 KB
testcase_27 AC 38 ms
51,948 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