Submission #7552

#TimeUsernameProblemLanguageResultExecution timeMemory
7552gs13068행성 탐사 (GA8_planet)C++98
20.30 / 100
3000 ms1756 KiB
#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);
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...