Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
20704 | 张志鹏 | 配方 | C++ | 解答错误 | 10 | 0 MS | 268 KB | 540 | 2021-06-19 20:06:36 |
#include<bits/stdc++.h> using namespace std; int n,k; int a[17][1001]; int all0; int flag; int just1; int c; int 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[i][j]!=0){ all0=1; if(flag==1&&a[i][j]!=just1){ cout<<-1; return 0; }else flag=1,just1=a[i][j]; } } if(all0==0) c++; just1=0; all0=0; flag=0; } for(int i=1;i<=c-1;i++){ ans*=2; } cout<<ans; }