#include #include using namespace std; const int mod=998244353,N=21; char s[N][30]; int mask[N]; long long ans=0; long long qpow(long long n,int l ) { long long res=1; while(l>0) { if(l&1) { res=res*n%mod; } l>>=1; n=n*n%mod; } return res; } int Count(int x) { int cnt=0;//cnt=0! while(x>0) { if(x&1) { cnt++; } x>>=1; } return cnt; } int main() { int n,l; scanf("%d%d",&n,&l); for(int i=0; i 1~n { scanf("%s",s[i]); int len=strlen(s[i]); for(int j=0; j1<