#P1444B. Divide and Sum

    ID: 5661 Type: RemoteJudge 2000ms 512MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>combinatoricsmathsortings*1900

Divide and Sum

No submission language available for this problem.

Description

You are given an array aa of length 2n2n. Consider a partition of array aa into two subsequences pp and qq of length nn each (each element of array aa should be in exactly one subsequence: either in pp or in qq).

Let's sort pp in non-decreasing order, and qq in non-increasing order, we can denote the sorted versions by xx and yy, respectively. Then the cost of a partition is defined as f(p,q)=i=1nxiyif(p, q) = \sum_{i = 1}^n |x_i - y_i|.

Find the sum of f(p,q)f(p, q) over all correct partitions of array aa. Since the answer might be too big, print its remainder modulo 998244353998244353.

The first line contains a single integer nn (1n1500001 \leq n \leq 150\,000).

The second line contains 2n2n integers a1,a2,,a2na_1, a_2, \ldots, a_{2n} (1ai1091 \leq a_i \leq 10^9) — elements of array aa.

Print one integer — the answer to the problem, modulo 998244353998244353.

Input

The first line contains a single integer nn (1n1500001 \leq n \leq 150\,000).

The second line contains 2n2n integers a1,a2,,a2na_1, a_2, \ldots, a_{2n} (1ai1091 \leq a_i \leq 10^9) — elements of array aa.

Output

Print one integer — the answer to the problem, modulo 998244353998244353.

Samples

Sample Input 1

1
1 4

Sample Output 1

6

Sample Input 2

2
2 1 2 1

Sample Output 2

12

Sample Input 3

3
2 2 2 2 2 2

Sample Output 3

0

Sample Input 4

5
13 8 35 94 9284 34 54 69 123 846

Sample Output 4

2588544

Note

Two partitions of an array are considered different if the sets of indices of elements included in the subsequence pp are different.

In the first example, there are two correct partitions of the array aa:

  1. p=[1]p = [1], q=[4]q = [4], then x=[1]x = [1], y=[4]y = [4], f(p,q)=14=3f(p, q) = |1 - 4| = 3;
  2. p=[4]p = [4], q=[1]q = [1], then x=[4]x = [4], y=[1]y = [1], f(p,q)=41=3f(p, q) = |4 - 1| = 3.

In the second example, there are six valid partitions of the array aa:

  1. p=[2,1]p = [2, 1], q=[2,1]q = [2, 1] (elements with indices 11 and 22 in the original array are selected in the subsequence pp);
  2. p=[2,2]p = [2, 2], q=[1,1]q = [1, 1];
  3. p=[2,1]p = [2, 1], q=[1,2]q = [1, 2] (elements with indices 11 and 44 are selected in the subsequence pp);
  4. p=[1,2]p = [1, 2], q=[2,1]q = [2, 1];
  5. p=[1,1]p = [1, 1], q=[2,2]q = [2, 2];
  6. p=[2,1]p = [2, 1], q=[2,1]q = [2, 1] (elements with indices 33 and 44 are selected in the subsequence pp).