結果

問題 No.239 にゃんぱすー
コンテスト
ユーザー 184
提出日時 2015-07-10 22:27:46
言語 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
結果
RE  
実行時間 -
コード長 488 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 327 ms
コンパイル使用メモリ 62,204 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2026-03-29 18:03:53
合計ジャッジ時間 5,270 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:8:44: warning: 'n' is used uninitialized [-Wuninitialized]
    8 |         char s[101][101][31]={};int n;scanf("%d",n);
      |                                       ~~~~~^~~~~~~~
main.cpp:8:37: note: 'n' was declared here
    8 |         char s[101][101][31]={};int n;scanf("%d",n);
      |                                     ^

ソースコード

diff #
raw source code

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;

int main(){
	char s[101][101][31]={};int n;scanf("%d",n); 
	int b[101];
	for(int i=0;i<n;i++)b[i]=-1;
	for(int i=0;i<n;i++)for(int j=0;j<n;j++){
		scanf("%s",s[i][j]);
		if(strcmp(s[i][j],"nyanpass")==0){
			if(b[i]<0||b[i]==1)b[i]=1;
			else b[i]=0;
		}
	}
	int ans=0,cnt=0; 
	for(int i=0;i<n;i++)if(b[i]==1){ans=i+1;cnt++;}
	if(cnt>1)printf("-1\n");
	else printf("%d\n",ans); 
	return 0;
}
0