public static int a,n,m,max,ans=1;
public static int[]arr=new int[16];
public static int[]b=new int[16];
public static boolean[]v=new boolean[16];
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner(System.in);
a=sc.nextInt();
while(a>0) {
n=sc.nextInt();
m=sc.nextInt();
for(int i=0;i<n;i++) {
arr[i]=sc.nextInt();
}
dfs(0);
System.out.println(max);
max=-Integer.MIN_VALUE;
a--;
}
}
public static void dfs(int x) {
if(x==m) {
ans=1;
for(int i=0;i<m;i++) {
ans*=b[i];
}
max=Math.max(max, ans);
return;
}
for(int i=0;i<n;i++) {
if(v[i]==false) {
v[i]=true;
b[i]=arr[i];
dfs(x+1);
v[i]=false;
}
}
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:695 |
十->二进制转换 (C语言代码)浏览:1330 |
【魔板】 (C++代码)(时间超限,希望会的帮我改正一下)浏览:804 |
用筛法求之N内的素数。 (C语言代码)浏览:890 |
Hello, world! (C++代码)浏览:1778 |
数组输出 (C语言代码)浏览:749 |
1052题解(链表操作)浏览:782 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:639 |
求圆的面积 (C语言代码)浏览:714 |
整数分类问题 为什么输出总是数字8啊浏览:451 |