CF1581A CQXYM Count Permutations
Description
CQXYM is counting permutations length of $ 2n $ .
A permutation is an array consisting of $ n $ distinct integers from $ 1 $ to $ n $ in arbitrary order. For example, $ [2,3,1,5,4] $ is a permutation, but $ [1,2,2] $ is not a permutation ( $ 2 $ appears twice in the array) and $ [1,3,4] $ is also not a permutation ( $ n=3 $ but there is $ 4 $ in the array).
A permutation $ p $ (length of $ 2n $ ) will be counted only if the number of $ i $ satisfying $ p_i
Input Format
The input consists of multiple test cases.
The first line contains an integer $ t (t \geq 1) $ — the number of test cases. The description of the test cases follows.
Only one line of each test case contains an integer $ n(1 \leq n \leq 10^5) $ .
It is guaranteed that the sum of $ n $ over all test cases does not exceed $ 10^5 $
Output Format
For each test case, print the answer in a single line.
Explanation/Hint
$ n=1 $ , there is only one permutation that satisfies the condition: $ [1,2]. $
In permutation $ [1,2] $ , $ p_1p_2 $ . Because $ 0