답안 #608758

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
608758 2022-07-27T09:54:53 Z Duy_e Monster Game (JOI21_monster) C++17
0 / 100
201 ms 416 KB
#include "monster.h"

using namespace std;

namespace {

bool example_variable;

}  // namespace

const long long N = 2e2 + 5;
int ans[N][N];

std::vector<int> Solve(int n) {

  	std::vector<int> T(n);
	
	int pos = 0;

	for (int i = 0; i < n; i ++) {
		for (int j = 0; j < n; j ++) 
			if (i != j) {
				ans[i][j] = Query(i, j);
				T[i] += ans[i][j];
		}

		if (T[i] == 2) pos = i;
	}

	for (int i = 0; i < n; i ++) if (T[i] == 1) {
		if (!ans[i][pos]) T[i] = 0;
	}

	return T;
}

Compilation message

monster.cpp:7:6: warning: '{anonymous}::example_variable' defined but not used [-Wunused-variable]
    7 | bool example_variable;
      |      ^~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB Wrong Answer [3]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 208 KB Wrong Answer [3]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 201 ms 416 KB Wrong Answer [6]
2 Halted 0 ms 0 KB -