結果

問題 No.2299 Antitypoglycemia
ユーザー dangodango
提出日時 2023-06-14 15:54:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 60,352 KB
最終ジャッジ日時 2024-06-23 00:32:19
合計ジャッジ時間 2,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,336 KB
testcase_01 AC 33 ms
52,732 KB
testcase_02 AC 32 ms
52,888 KB
testcase_03 AC 37 ms
59,620 KB
testcase_04 AC 36 ms
59,000 KB
testcase_05 AC 35 ms
58,804 KB
testcase_06 AC 35 ms
58,788 KB
testcase_07 AC 34 ms
58,800 KB
testcase_08 AC 35 ms
60,176 KB
testcase_09 AC 36 ms
58,532 KB
testcase_10 AC 35 ms
58,336 KB
testcase_11 AC 38 ms
59,400 KB
testcase_12 AC 39 ms
59,796 KB
testcase_13 AC 40 ms
59,300 KB
testcase_14 AC 37 ms
58,084 KB
testcase_15 AC 38 ms
58,404 KB
testcase_16 AC 38 ms
58,352 KB
testcase_17 AC 38 ms
58,620 KB
testcase_18 AC 41 ms
59,540 KB
testcase_19 AC 39 ms
59,368 KB
testcase_20 AC 42 ms
60,352 KB
testcase_21 AC 39 ms
59,692 KB
testcase_22 AC 40 ms
60,332 KB
testcase_23 AC 32 ms
51,756 KB
testcase_24 AC 33 ms
53,420 KB
testcase_25 AC 34 ms
52,016 KB
testcase_26 AC 33 ms
52,016 KB
testcase_27 AC 32 ms
52,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b=map(int,input().split())
mod,f=998244353,[1]*(n+1)
for i in range(n):f[i+1]=f[i]*(i+1)%mod
print((f[n]-2*f[n-1]+f[n-2]*(a!=b))%mod)
0