/*
|01|11|2010|
*/
#include <bits/stdc++.h>
#define ll long long
#define int ll
#define ld long double
#define pb push_back
#define ff first
#define ss second
#define sp setprecision
#define stl(v) v.begin(),v.end()
#define stlr(v) v.rbegin(),v.rend()
#define b1cnt __builtin_popcount
using namespace std;
const int N=2512;
const int mod=1e9+7;
const int inf=1e18;
const int M=55;
int n,m;
char a[N][N];
void prob(){
cin>>n>>m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++) cin>>a[i][j];
}
int mnr=inf,mnc=inf,cnt=0;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
if(a[i][j]=='1') cnt++;
else{
if(cnt) mnr=min(mnr,cnt);
cnt=0;
}
}
if(cnt) mnr=min(mnr,cnt);
cnt=0;
}
for(int j=1;j<=m;j++){
for(int i=1;i<=n;i++){
if(a[i][j]=='1') cnt++;
else{
if(cnt) mnc=min(mnc,cnt);
cnt=0;
}
}
if(cnt) mnc=min(mnc,cnt);
cnt=0;
}
if(mnr==inf && mnc==inf) cout<<0;
else cout<<mnr*mnc;
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int t2=1;
// cin>>t2;
for(int test=1;test<=t2;test++){
prob();
}
}
// ▄▌▐▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█|
// ▄▄██▌█════Фура═с═Кодами════█|
// ▄▄▄▌▐██▌█═Приехала═Разгружаем═█|
// ███████▌█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█|
// ▀(@)▀▀▀▀▀▀▀(@)(@)▀▀▀▀▀▀▀▀▀▀▀(@)
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |