# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
7550 | gs13068 | 행성 탐사 (GA8_planet) | C++98 | 0 ms | 0 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 ”planet.h”
int calls = 0;
int my_row(int r)
{
calls++;
return count_row(r);
}
int my_col(int c)
{
calls++;
return count_col(c);
}
void ainta()
{
paint(0,0);
}
void sangsoo()
{
int x, y;
for(x=0; x<2222; x++)if(my_row(x))break;
for(y=0; y<2222; y++)if(my_col(y))break;
report(x,y);
}