結果

問題 No.239 にゃんぱすー
コンテスト
ユーザー airis
提出日時 2015-07-10 23:16:49
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,015 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 457 ms
コンパイル使用メモリ 104,660 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2026-03-29 18:22:57
合計ジャッジ時間 3,466 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 31 WA * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:48:25: warning: 'idx' may be used uninitialized [-Wmaybe-uninitialized]
   48 |                 cout << idx << endl;
      |                         ^~~
main.cpp:43:22: note: 'idx' was declared here
   43 |         int cnt = 0, idx;
      |                      ^~~

ソースコード

diff #
raw source code

#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