結果
| 問題 | No.239 にゃんぱすー |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-11-24 17:16:45 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 635 bytes |
| 記録 | |
| コンパイル時間 | 1,179 ms |
| コンパイル使用メモリ | 222,712 KB |
| 実行使用メモリ | 9,288 KB |
| 最終ジャッジ日時 | 2026-07-06 04:52:23 |
| 合計ジャッジ時間 | 3,276 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 2 |
| other | AC * 16 WA * 17 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef int64_t ll;
void solve() {
ll n;
cin>>n;
string s="nyanpass";
vector<vector<string>> a(n, vector<string>(n));
for (ll i = 0; i < n; i++) {
for (ll j = 0; j < n; j++) {
cin >> a[i][j];
}
}
vector<bool> answer(n, true);
ll cnt=0;
for (ll i = 0; i < n; i++) {
for (ll j = 0; j < n; j++) {
if(i!=j&&a.at(i).at(j)==s){
answer.at(i)=false;
cnt++;
}
}
}
if(cnt!=1){
cout<<-1<<endl;
}else{
for(ll i=0;i<n;i++){
if(answer.at(i)) cout<<i+1<<endl;
}
}
}
int main() { solve();system("pause"); }