解题思路: 分别统计奇数和偶数
ans!=0时
ans=2^(odd-1+even)
注意事项:
参考代码:
import java.util.Scanner;
public class 数组分割 {
/*
2
2
6 6
2
1 6
* */
static long mod=1000000007;
static int cifang;
public static void main(String[] args) {
Scanner scanner=new Scanner(System.in);
int T=scanner.nextInt();
while(T>0) {
T--;
int n=scanner.nextInt();
int even=0;
int odd=0;
cifang=0;
for(int i=1;i<=n;i++) {
int num=scanner.nextInt();
if(num%2==0)
even++;
else {
odd++;
}
}
// System.out.println(even+" even");
// System.out.println(odd+" odd");
if(odd==0&&even>0){
cifang = even;
}
// System.out.println(Math.pow(2, even)%mod);
else if(odd%2==0)
cifang =odd-1+even;
else {
cifang=-1;
}
// System.out.println(cifang+" p");
long ans=1;
if(cifang==-1)
System.out.println(0);
else {
while(cifang>0)
{
ans=(ans*2)%mod;
cifang--;
}
System.out.println(ans);
// System.out.println(" "+odd+" "+even);
}
}
}
}
0.0分
9 人评分
C语言训练-计算:t=1-1/(2*2)-1/(3*3)-...-1/(m*m) (C语言代码)浏览:799 |
拆分位数 (C语言代码)浏览:1361 |
WU-整除问题 (C++代码)浏览:648 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:593 |
回文数字 (C语言代码)浏览:2539 |
1017题解浏览:663 |
C二级辅导-统计字符 (C语言代码)浏览:514 |
妹子杀手的故事 (C语言代码)浏览:1153 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:855 |
买不到的数目 (C语言代码)浏览:3134 |