結果

問題 No.239 にゃんぱすー
ユーザー olpheolphe
提出日時 2016-11-20 03:50:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 54,200 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-05 10:33:02
合計ジャッジ時間 1,598 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 3 ms
6,948 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 6 ms
6,944 KB
testcase_26 AC 5 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 3 ms
6,940 KB
testcase_31 AC 3 ms
6,944 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 4 ms
6,944 KB
testcase_34 AC 4 ms
6,940 KB
testcase_35 AC 5 ms
6,940 KB
testcase_36 AC 6 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:23:58: warning: NULL used in arithmetic [-Wpointer-arith]
   23 |                                 if (greeting[i][j][8] != NULL)flag[j] = false;
      |                                                          ^~~~

ソースコード

diff #

#include "iostream"
using namespace std;

int N;
int nyanpass[8] = { 'n','y','a','n','p','a','s','s' };
char greeting[100][100][50];
bool flag[100];
int ans = -1;

int main() {
	cin >> N;
	for (int i = 0; i < N; i++)flag[i] = true;
	for (int i = 0; i < N; i++) {
		for (int j = 0; j < N; j++) {
			cin >> greeting[i][j];
			if (i != j) {
				for (int k = 0; k < 8; k++) {
					if (greeting[i][j][k] != nyanpass[k]) {
						flag[j] = false;
						break;
					}
				}
				if (greeting[i][j][8] != NULL)flag[j] = false;
			}
		}
	}
	for (int i = 0; i < N; i++) {
		if (flag[i]) {
			if (ans == -1) {
				ans = i+1;
			}
			else {
				cout << "-1\n";
				return 0;
			}
		}
	}
		cout << ans << "\n";
	return 0;

}
0