結果

問題 No.239 にゃんぱすー
ユーザー airis
提出日時 2015-07-10 23:16:49
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 1,015 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 81,072 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-08 02:16:32
合計ジャッジ時間 1,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 31 WA * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:48:25: warning: ‘idx’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   48 |                 cout << idx << endl;
      |                         ^~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <numeric>
#include <bitset>
#include <complex>
#define rep(x, to) for (int x = 0; x < (to); x++)
#define REP(x, a, to) for (int x = (a); x < (to); x++)
#define foreach(itr, x) for (typeof((x).begin()) itr = (x).begin(); itr != (x).end(); itr++)
#define EPS (1e-14)

using namespace std;

typedef long long ll;
typedef pair<int, int> PII;
typedef pair<ll, ll> PLL;
typedef complex<double> Complex;
typedef vector< vector<int> > Mat;

int N;
int renge[105];
string s;

int main() {
	cin >> N;
	rep(i, N) rep(j, N) {
		cin >> s;
		if (s == "nyanpass") {
			renge[j]++;
		}
	}
	int mx = -1;
	rep(i, N) mx = max(mx, renge[i]);
	int cnt = 0, idx;
	rep(i, N) if (mx == renge[i]) {cnt++; idx = i+1;}
	if (mx == 0 || cnt > 1) {
		cout << -1 << endl;
	} else {
		cout << idx << endl;
	}
	return 0;
}


0