Submission #40594

#TimeUsernameProblemLanguageResultExecution timeMemory
40594baactreeTreasure (different grader from official contest) (CEOI13_treasure2)C++14
10 / 100
2 ms728 KiB
#include "treasure.h"
#include <string.h>
#include <stdio.h>
int mat[105][105];
void findTreasure (int N) {
	for (int i = 1; i <= N; i++)
		for (int j = 1; j <= N; j++)
			mat[i][j] = countTreasure(i, j, i, j);
	for (int i = 1; i <= N; i++)
		for (int j = 1; j <= N; j++)
			if (mat[i][j])
				Report(i, j);
}

Compilation message (stderr)

grader.c: In function 'int main()':
grader.c:63:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         my_assert(strlen(A[i]+1) == N, "each line of the map must contain N zeroes or ones (before loop)");
                                  ^
#Verdict Execution timeMemoryGrader output
Fetching results...