#include using namespace std; int main() { // 1. 入力情報取得. int N; cin >> N; map m; for(int i = 1; i < N + 1; i++){ for(int j = 1; j < N + 1; j++){ // 村民j番 の "nyanpass"発言回数 を保管. string a; cin >> a; if(a == "nyanpass") m[j]++; } } // 2. "れんちょんっぽい"村民を探索. int ans = -1; int isOne = true; for(auto &p : m){ if(p.second == N - 1 && !isOne){ ans = -1; break; } if(p.second == N - 1 && isOne) ans = p.first, isOne = false; } // 3. 出力 ~ 後処理. cout << ans << endl; return 0; }