結果

問題 No.2299 Antitypoglycemia
ユーザー qibqib
提出日時 2023-05-16 19:46:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 60,660 KB
最終ジャッジ日時 2024-12-14 18:12:51
合計ジャッジ時間 2,682 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,676 KB
testcase_01 AC 38 ms
53,268 KB
testcase_02 AC 38 ms
52,728 KB
testcase_03 AC 45 ms
59,352 KB
testcase_04 AC 43 ms
60,400 KB
testcase_05 AC 43 ms
58,932 KB
testcase_06 AC 45 ms
59,688 KB
testcase_07 AC 42 ms
58,720 KB
testcase_08 AC 42 ms
59,900 KB
testcase_09 AC 43 ms
59,124 KB
testcase_10 AC 43 ms
60,212 KB
testcase_11 AC 41 ms
59,268 KB
testcase_12 AC 42 ms
59,596 KB
testcase_13 AC 45 ms
59,716 KB
testcase_14 AC 42 ms
59,160 KB
testcase_15 AC 43 ms
58,980 KB
testcase_16 AC 43 ms
58,732 KB
testcase_17 AC 44 ms
58,280 KB
testcase_18 AC 46 ms
60,040 KB
testcase_19 AC 45 ms
60,588 KB
testcase_20 AC 43 ms
60,660 KB
testcase_21 AC 43 ms
59,712 KB
testcase_22 AC 44 ms
60,348 KB
testcase_23 AC 39 ms
52,516 KB
testcase_24 AC 39 ms
52,344 KB
testcase_25 AC 36 ms
53,012 KB
testcase_26 AC 37 ms
53,276 KB
testcase_27 AC 36 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n, a, b = map(int, input().split())
if n == 2:
  if a == b:
    print("0")
  else:
    print("1")
  exit()

fact = [1 for _ in range(n + 1)]
for x in range(2, n + 1):
  fact[x] = (fact[x - 1] * x) % MOD

if a == b:
  print((n - 2) * fact[n - 1] % MOD)
else:
  print((fact[n] - 2 * fact[n - 1] + fact[n - 2]) % MOD)
0