原翻译这 latex 写的是个啥。
给定 n 个正整数 m1 到 mn,对长度为 n 且满足以下条件的整数序列 a 计数:
- 对于任意 1≤i≤n,0≤ai≤mi;
- a1⊕a2⊕⋯⊕an=0,其中 ⊕ 为按位异或运算;
- a1+a2+⋯+an≥1。
给定 $n$ 个正整数 $m_1$ 到 $m_n$,对长度为 $n$ 且满足以下条件的整数序列 $a$ 计数:
- 对于任意 $1\le i\le n$,$0\le a_i\le m_i$;
- $a_1\oplus a_2\oplus\cdots\oplus a_n=0$,其中 $\oplus$ 为按位异或运算;
- $a_1+a_2+\cdots+a_n\ge1$。
输入输出格式翻译见 https://www.luogu.com.cn/discuss/202684。