Submission #77706

#TimeUsernameProblemLanguageResultExecution timeMemory
77706MohamedAhmed0Treasure (different grader from official contest) (CEOI13_treasure2)C++14
Compilation error
0 ms0 KiB
#include "treasure.h" #include <bits/stdc++.h> using namespace std ; void findTreasure (int N) { int arr[N+1][N+1] ; for(int i = 1 ; i <= N ; ++i) { for(int j = 1 ; j <= N ; ++j) arr[i][j] = countTreasure(i , j , i , j); } //int cnt = countTreasure(1, 1, N, N); //if(cnt > 0) Report(1 , 1); cout<<"END\n"; for(int i = 1 ; i <= N ; ++i) { for(int j = 1 ; j <= N ; ++j) { if(arr[i][j] > 0) report(i , j); } } }

Compilation message (stderr)

treasure.cpp: In function 'void findTreasure(int)':
treasure.cpp:21:15: error: 'report' was not declared in this scope
               report(i , j);
               ^~~~~~
treasure.cpp:21:15: note: suggested alternative: 'Report'
               report(i , j);
               ^~~~~~
               Report