| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 2 초 | 1024 MB | 95 | 39 | 35 | 40.698% |
You are given $n$ integers $a_1, a_2, \dots , a_n$. You have a sequence of $n$ integers $B = (b_1, b_2, \dots , b_n)$ which initially are all zeroes.
In one operation, you choose two different indices $i$ and $j,ドル then simultaneously
Note that $\oplus$ represents the bitwise XOR operation, which returns an integer whose binary representation has a 1ドル$ in each bit position for which the corresponding bits of either but not both operands are 1ドル$. For example, 3ドル \oplus 10 = 9$ because $(0011)_2 \oplus (1010)_2 = (1001)_2$.
You want to compute the number of different possible sequences $B$ you can obtain after performing zero or more operations. Since this number might be huge, calculate this number modulo 998ドル,円 244,円 353$.
Two sequences of length $n$ are considered different if and only if there exists an index $i$ (1ドル ≤ i ≤ n$) such that the $i$-th element of one sequence differs from the $i$-th element of the other sequence.
The first line of input contains one integer $n$ (2ドル ≤ n ≤ 200,円 000$). The second line contains $n$ integers $a_1, a_2, \dots , a_n$ (0ドル ≤ a_i < 2^{30}$ for all $i$).
Output an integer representing the number of different possible sequences $B$ you can obtain after performing zero or more operations modulo 998ドル,円 244,円 353$.
3 1 2 1
4
Starting from $B = (0, 0, 0),ドル we can obtain the following two sequences $B$:
Starting from $B = (0, 0, 0),ドル we can also obtain the following sequence $B$:
It can be shown that $(0, 0, 0),ドル $(3, 3, 0),ドル $(3, 0, 3),ドル and $(0, 3, 3)$ are the only possible sequences $B$ you can obtain. Therefore, the answer is 4ドル$.
4 852415 852415 852415 852415
1