#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++)
#define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++)
#define all(n) (n).begin(),(n).end()
typedef long long ll;
typedef vector<int> Vi;
typedef vector<Vi> VVi;
typedef pair<long long,long long> Pii;
typedef vector<Pii> VPii;

char s[6][6];

int res = 1e9;
int N;
int f(int x,int y){
	if( x >= N ) x = 0 , y++;
	if( y >= N ){
		int r[6] = {};
		for(int i = 0 ; i < N ; i++){
			for(int j = 0 ; j < N ; j++){
				if( s[i][j] == 'o' ) r[i]++;
			}
		}
		int rr = 0;
		for(int i = 0 ; i < N ; i++)
			if( r[i] > r[0] ) rr++;
		res = min(rr+1,res);
		return 0;
	}
	if( s[y][x] == '-' ){
		s[y][x] = 'o';
		s[x][y] = 'x';
		f(x+1,y);
		s[y][x] = s[x][y] = '-';
		s[y][x] = 'x';
		s[x][y] = 'o';
		f(x+1,y);
		s[y][x] = s[x][y] = '-';
	}else{
		f(x+1,y);
	}
}
int main(){
	cin >> N;
	rep(i,N)rep(j,N) cin >> s[i][j];
	
	
	f(0,0);
	cout << res << endl;
}