結果
問題 | No.239 にゃんぱすー |
ユーザー |
|
提出日時 | 2020-03-15 18:47:23 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 379 bytes |
コンパイル時間 | 2,022 ms |
コンパイル使用メモリ | 192,856 KB |
最終ジャッジ日時 | 2025-01-09 07:03:03 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | int n; scanf("%d",&n); | ~~~~~^~~~~~~~~
ソースコード
#include <bits/stdc++.h>#define rep(i,n) for(int i=0;i<(n);i++)using namespace std;int main(){int n; scanf("%d",&n);string a[100][100];rep(i,n) rep(j,n) cin>>a[i][j];int ans=-1;rep(j,n){bool ok=true;rep(i,n) if(i!=j && a[i][j]!="nyanpass") ok=false;if(ok){if(ans==-1) ans=j+1;else return puts("-1"),0;}}printf("%d\n",ans);return 0;}