#include<stdio.h>
#include<iostream>
#include<algorithm>
using namespace std;
const int N=5005;
struct node
{
int a,b,c;
}P[N];
int T,num,tot,ans,a,b,c,i,j,k,I,J,K,x,p[N],f[N],h[20];
int head[N],Next[N<<1],to[N<<1];
void SWAP(int&i,int&j,int&k)
{
if(a>b) swap(i,j);
if(a>c) swap(i,k);
if(b>c) swap(j,k);
}
void add(int x,int y)
{
tot++;
to[tot]=y;
Next[tot]=head[x];
head[x]=tot;
}
int dfs(int x,int M)
{
for(int i=head[x];i!=-1;i=Next[i])
{
int y=to[i];
if(p[y]==M) continue;
p[y]=M;
if(f[y]==0||dfs(f[y],M))
{
f[y]=x;
return 1;
}
}
return 0;
}
void Dfs(int x,int cnt)
{
if(cnt>=ans) return;
if(x>a)
{
int i;
tot=0;
for(i=1;i<=c;i++)
head[i]=-1,f[i]=p[i]=0;
for(i=1;i<=num;i++)
if(h[P[i].a]==0) add(P[i].b,P[i].c);
for(i=1;i<=b;i++)
{
cnt+=dfs(i,i);
if(cnt>=ans) return;
}
ans=cnt;
}
h[x]=1;
Dfs(x+1,cnt+1);
h[x]=0;
Dfs(x+1,cnt);
}
int main()
{
scanf("%d",&T);
while(T--)
{
scanf("%d%d%d",&a,&b,&c);
num=0;
for(i=1;i<=a;i++)
for(j=1;j<=b;j++)
for(k=1;k<=c;k++)
{
scanf("%d",&x);
if(x)
{
I=i;J=j;K=k;
SWAP(I,J,K);
num++;
P[num].a=I;P[num].b=J;P[num].c=K;
}
}
SWAP(a,b,c);
ans=a;
Dfs(1,0);
printf("%d\n",ans);
}
return 0;
}