Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
20702 | 账号已注销 | 配方 | C++ | Accepted | 100 | 0 MS | 256 KB | 448 | 2021-06-19 20:03:04 |
#include<bits/stdc++.h> using namespace std; short a[1001][17]={0}; int n,k,flag=0,ans=1; int main(){ cin>>n>>k; for(int i=1;i<=n;i++){ for(int j=1;j<=k;j++){ cin>>a[i][j]; } } for(int i=1;i<=k;i++){ for(int j=1;j<=n;j++){ if(a[j][i]!=0){ if(flag!=0&&flag!=a[j][i]){ cout<<-1; return 0; }else{ flag=a[j][i]; } } } if(flag==0) ans*=2; flag=0; } cout<<ans; return 0; }