# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
27228 | TAMREF | Treasure (different grader from official contest) (CEOI13_treasure2) | C++11 | 0 ms | 1260 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "treasure.h"
int x[10001], y[10001], t;
void findTreasure (int N) {
int i,j;
for(i=1;i<=N;i++){
for(j=1;j<=N;j++){
if(countTreasure(i,j,i,j)){
x[t]=i,y[t++]=j;
}
}
}
for(i=0;i<t;i++) Report(x[i],y[i]);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |