結果
問題 | No.239 にゃんぱすー |
ユーザー |
|
提出日時 | 2016-01-20 23:52:02 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 985 bytes |
コンパイル時間 | 889 ms |
コンパイル使用メモリ | 78,904 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 14:53:25 |
合計ジャッジ時間 | 1,945 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
ソースコード
#include <iostream> #include <string> #include <vector> #include <queue> #include <stack> #include <map> #include <algorithm> #include <set> #include <sstream> #include <utility> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <cctype> #include <climits> using namespace std; typedef long long ll; #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) for(int i=0;i<(n);++i) #define foreach(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); itr++) int main(int argc, char const *argv[]) { int n; cin >>n; vector< vector<string> > a(n,vector<string>(n)); REP(i,n){ REP(j,n){ cin >>a[i][j]; } } int ans=-1; REP(i,n){ bool renchon=true; REP(j,n){ if(i==j) continue; if(a[j][i]!="nyanpass") renchon = false; } if(renchon){ if(ans==-1){ ans=i+1; } else{ ans=-1; break; } } } std::cout << ans << std::endl; return 0; }