#agc040f. [agc040_f]Two Pieces

[agc040_f]Two Pieces

Problem Statement

We have two indistinguishable pieces placed on a number line. Both pieces are initially at coordinate 00. (They can occupy the same position.)

We can do the following two kinds of operations:

  • Choose a piece and move it to the right (the positive direction) by 11.
  • Move the piece with the smaller coordinate to the position of the piece with the greater coordinate. If two pieces already occupy the same position, nothing happens, but it still counts as doing one operation.

We want to do a total of NN operations of these kinds in some order so that one of the pieces will be at coordinate AA and the other at coordinate BB. Find the number of ways to move the pieces to achieve it. The answer can be enormous, so compute the count modulo 998244353998244353.

Two ways to move the pieces are considered different if and only if there exists an integer ii (1leqileqN1 \\leq i \\leq N) such that the set of the coordinates occupied by the pieces after the ii-th operation is different in those two ways.

Constraints

  • 1leqNleq1071 \\leq N \\leq 10^7
  • 0leqAleqBleqN0 \\leq A \\leq B \\leq N
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN AA BB

Output

Print the number of ways to move the pieces to achieve our objective, modulo 998244353998244353.


Sample Input 1

5 1 3

Sample Output 1

4

Shown below are the four ways to move the pieces, where (x,y)(x,y) represents the state where the two pieces are at coordinates xx and yy.

  • (0,0)(0,0)(0,1)(0,2)(0,3)(1,3)(0,0)→(0,0)→(0,1)→(0,2)→(0,3)→(1,3)
  • (0,0)(0,0)(0,1)(0,2)(1,2)(1,3)(0,0)→(0,0)→(0,1)→(0,2)→(1,2)→(1,3)
  • (0,0)(0,0)(0,1)(1,1)(1,2)(1,3)(0,0)→(0,0)→(0,1)→(1,1)→(1,2)→(1,3)
  • (0,0)(0,1)(1,1)(1,1)(1,2)(1,3)(0,0)→(0,1)→(1,1)→(1,1)→(1,2)→(1,3)

Sample Input 2

10 0 0

Sample Output 2

1

Sample Input 3

10 4 6

Sample Output 3

197

Sample Input 4

1000000 100000 200000

Sample Output 4

758840509